@fy-/fws-vue 2.2.73 → 2.2.75
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.
|
@@ -156,9 +156,9 @@ onMounted(() => {
|
|
|
156
156
|
class="flex flex-col items-center justify-center"
|
|
157
157
|
>
|
|
158
158
|
<div class="paging-container w-full">
|
|
159
|
-
<nav aria-label="Pagination" class="mb-1 flex justify-center">
|
|
160
|
-
<!-- Desktop pagination - only visible on
|
|
161
|
-
<div class="hidden
|
|
159
|
+
<nav aria-label="Pagination" class="mb-1 flex justify-center w-full">
|
|
160
|
+
<!-- Desktop pagination - only visible on lg screens and up -->
|
|
161
|
+
<div class="hidden lg:block w-full">
|
|
162
162
|
<ul class="pagination-list desktop-pagination">
|
|
163
163
|
<!-- Previous Button -->
|
|
164
164
|
<li v-if="items.page_no >= 2" class="pagination-item">
|
|
@@ -281,8 +281,8 @@ onMounted(() => {
|
|
|
281
281
|
</ul>
|
|
282
282
|
</div>
|
|
283
283
|
|
|
284
|
-
<!-- Mobile pagination - Compact version -
|
|
285
|
-
<div class="block
|
|
284
|
+
<!-- Mobile pagination - Compact version - visible on xs, sm, and md screens -->
|
|
285
|
+
<div class="block lg:hidden w-full">
|
|
286
286
|
<ul class="pagination-list mobile-pagination">
|
|
287
287
|
<!-- Previous Button -->
|
|
288
288
|
<li v-if="items.page_no >= 2" class="pagination-item">
|
|
@@ -419,7 +419,7 @@ onMounted(() => {
|
|
|
419
419
|
|
|
420
420
|
.desktop-pagination,
|
|
421
421
|
.mobile-pagination {
|
|
422
|
-
@apply flex justify-center;
|
|
422
|
+
@apply flex items-center justify-center mx-auto;
|
|
423
423
|
}
|
|
424
424
|
|
|
425
425
|
.pagination-item {
|