10 lines
162 B
SCSS
10 lines
162 B
SCSS
|
//pagination.scss
|
||
|
|
||
|
.pagination {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-evenly;
|
||
|
font-size: 2rem;
|
||
|
list-style-type: none;
|
||
|
}
|