16 lines
282 B
SCSS
Vendored
16 lines
282 B
SCSS
Vendored
// pagination.scss
|
|
|
|
.pagination {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
list-style-type: none;
|
|
width: $mainWidth;
|
|
}
|
|
|
|
@media screen and (max-width: $mainWidth) {
|
|
.pagination {
|
|
width: 95vw;
|
|
}
|
|
}
|