mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 10:58:33 +00:00
25 lines
456 B
SCSS
25 lines
456 B
SCSS
.pagination {
|
|
align-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 2em;
|
|
.previous,
|
|
.next {
|
|
border-radius: 4px;
|
|
padding: 1em;
|
|
text-align: center;
|
|
width: 100px;
|
|
&.disabled {
|
|
color: $grey-color;
|
|
}
|
|
}
|
|
|
|
& > * {
|
|
padding: 1em;
|
|
}
|
|
|
|
@include media-query($on-palm) {
|
|
flex-flow: column wrap;
|
|
}
|
|
} |