Add pagination

This commit is contained in:
alxshelepenok
2018-11-11 14:19:06 +03:00
parent 38090a3a0f
commit 338317803e
24 changed files with 404 additions and 48 deletions

View File

@@ -0,0 +1,54 @@
@import '../../assets/scss/variables';
@import '../../assets/scss/mixins';
.pagination {
@include margin-top(2);
display: flex;
&__prev {
width: 50%;
text-align: left;
&-link {
color: $color-secondary;
font-size: 26px;
font-weight: bold;
&:hover,
&:focus {
color: $color-primary;
}
&--disable {
pointer-events: none;
color: lighten($color-gray, 20%);
}
}
}
&__next {
width: 50%;
text-align: right;
&-link {
color: $color-secondary;
font-size: 26px;
font-weight: bold;
&:hover,
&:focus {
color: $color-primary;
}
&--disable {
pointer-events: none;
color: lighten($color-gray, 20%);
}
}
}
}