Fixed pagination button size

This commit is contained in:
2025-09-17 16:34:29 +02:00
parent 3bfd1c17dd
commit 5fa145a9d7
4 changed files with 25 additions and 3 deletions

View File

@@ -77,4 +77,26 @@
linear-gradient(127deg, rgb(0 255 0 / 80%), rgb(0 255 0 / 0%) 70.71%),
linear-gradient(336deg, rgb(0 0 255 / 80%), rgb(0 0 255 / 0%) 70.71%)
;
}
/* Mobile Pagination Fixes */
.mobile-pagination {
display: flex !important;
width: 100% !important;
gap: 2px;
}
.mobile-pagination .btn:first-child,
.mobile-pagination .btn:last-child {
flex: 0 0 auto;
min-width: 90px;
max-width: 120px;
}
.mobile-pagination .btn:nth-child(2) {
flex: 1 1 auto;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
min-width: 0;
}