20 lines
323 B
SCSS
20 lines
323 B
SCSS
@import '../variables';
|
|
|
|
.pagination{
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 10%;
|
|
margin-top: 5%;
|
|
}
|
|
|
|
.pagination-page{
|
|
border: 1px solid $border;
|
|
padding: 7px;
|
|
margin: 7px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.pagination-page-active{
|
|
background-color: $primary;
|
|
color: $on-primary;
|
|
} |