Reworking assets

This commit is contained in:
Jonny Barnes 2019-07-13 18:05:50 +01:00
parent 1e546f00b1
commit 30f9b0f557
201 changed files with 434 additions and 14696 deletions

16
resources/sass-orig/_pagination.scss vendored Normal file
View file

@ -0,0 +1,16 @@
// 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;
}
}