srcdev-nuxt-components 4.0.2 → 4.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -29,8 +29,12 @@
|
|
|
29
29
|
</ul>
|
|
30
30
|
</div>
|
|
31
31
|
<div class="buttons-container">
|
|
32
|
-
<button type="button" @click.prevent="actionPrevious()" class="btn-action" aria-label="Go to previous item">
|
|
33
|
-
|
|
32
|
+
<button type="button" @click.prevent="actionPrevious()" class="btn-action" aria-label="Go to previous item">
|
|
33
|
+
<Icon name="ic:outline-keyboard-arrow-left" class="arrows-icon" />
|
|
34
|
+
</button>
|
|
35
|
+
<button type="button" @click.prevent="actionNext()" class="btn-action" aria-label="Go to next item">
|
|
36
|
+
<Icon name="ic:outline-keyboard-arrow-right" class="arrows-icon" />
|
|
37
|
+
</button>
|
|
34
38
|
</div>
|
|
35
39
|
</div>
|
|
36
40
|
</LayoutRow>
|
|
@@ -254,8 +258,17 @@ onMounted(() => {
|
|
|
254
258
|
gap: 20px;
|
|
255
259
|
|
|
256
260
|
.btn-action {
|
|
261
|
+
display: flex;
|
|
262
|
+
align-items: center;
|
|
263
|
+
justify-content: center;
|
|
264
|
+
|
|
257
265
|
cursor: pointer;
|
|
258
266
|
height: fit-content;
|
|
267
|
+
|
|
268
|
+
.arrows-icon {
|
|
269
|
+
width: 24px;
|
|
270
|
+
height: 24px;
|
|
271
|
+
}
|
|
259
272
|
}
|
|
260
273
|
}
|
|
261
274
|
}
|
package/package.json
CHANGED