@fy-/fws-vue 2.2.73 → 2.2.74

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 sm screens and up -->
161
- <div class="hidden sm:block w-full">
159
+ <nav aria-label="Pagination" class="mb-1 flex justify-center w-full">
160
+ <!-- Desktop pagination - only visible on md screens and up -->
161
+ <div class="hidden md: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 - only visible on xs screens -->
285
- <div class="block sm:hidden w-full">
284
+ <!-- Mobile pagination - Compact version - visible on xs and sm screens -->
285
+ <div class="block md: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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.2.73",
3
+ "version": "2.2.74",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/fy-to/FWJS#readme",