imeeting/frontend/src/components/shared/AppPagination/index.css

62 lines
1.1 KiB
CSS
Raw Normal View History

.app-pagination-container {
margin-top: auto;
flex-shrink: 0;
width: 100%;
2026-06-26 06:13:40 +00:00
height: 50px;
padding-top: 8px;
background: #fff;
box-sizing: border-box;
min-width: 0;
overflow: hidden;
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.app-pagination-total {
flex: 0 0 auto;
min-width: 0;
color: #333;
white-space: nowrap;
}
.app-pagination-container .ant-pagination {
2026-06-26 06:13:40 +00:00
flex: 1 1 auto;
width: auto;
min-width: 0;
display: flex;
align-items: center;
2026-06-26 06:13:40 +00:00
justify-content: flex-end;
margin: 0 !important;
2026-06-26 06:13:40 +00:00
overflow: visible;
}
.app-pagination-container .ant-pagination-total-text {
2026-06-26 06:13:40 +00:00
display: none;
}
.app-pagination-container .ant-select-selection-search-input {
caret-color: transparent;
cursor: pointer;
}
2026-06-26 06:13:40 +00:00
@media (max-width: 768px) {
.app-pagination-container {
height: auto;
min-height: 50px;
align-items: flex-start;
flex-direction: column;
gap: 8px;
overflow: visible;
}
.app-pagination-container .ant-pagination {
width: 100%;
justify-content: flex-start;
flex-wrap: wrap;
row-gap: 8px;
}
}