philomena/assets/css/views/_pagination.scss

45 lines
684 B
SCSS
Raw Normal View History

2020-12-11 17:53:40 +01:00
.page__header {
display: flex;
flex-wrap: wrap;
}
.page__title {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
2020-12-11 17:53:40 +01:00
.page__title, .page__pagination {
flex-shrink: 0;
display: block;
box-sizing: border-box;
max-width: 100%;
}
.pagination__dropdown {
min-width: 4em;
}
@media (max-width: $min_px_width_for_desktop_thumb) {
2020-12-11 17:53:40 +01:00
.page__title, .page__options {
display: none;
}
2020-12-11 17:53:40 +01:00
.page__header, .page__pagination, .page__info {
display: block;
text-align: center;
}
2020-12-11 17:53:40 +01:00
.page__pagination nav {
display: flex;
width: 100%;
a, span {
text-align: center;
flex: 1 1 auto;
padding: 0 1vw;
}
}
}