mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 20:37:59 +01:00
36 lines
622 B
SCSS
36 lines
622 B
SCSS
.imagelist__header {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.imagelist__title, .imagelist__pagination {
|
|
display: inline-flex;
|
|
flex-wrap: nowrap;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.pagination__dropdown {
|
|
min-width: 4em;
|
|
}
|
|
|
|
@media (max-width: $min_px_width_for_desktop_thumb) {
|
|
.imagelist__title, .imagelist__options {
|
|
display: none;
|
|
}
|
|
|
|
.imagelist__header, .imagelist__pagination, .imagelist__info {
|
|
display: block;
|
|
text-align: center;
|
|
}
|
|
|
|
.imagelist__pagination nav {
|
|
display: flex;
|
|
width: 100%;
|
|
|
|
a, span {
|
|
text-align: center;
|
|
flex: 1 1 auto;
|
|
padding: 0 1vw;
|
|
}
|
|
}
|
|
}
|