website/_sass/pagination/_style.scss
2018-10-20 15:30:02 +08:00

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;
}
}