15 lines
223 B
SCSS
15 lines
223 B
SCSS
|
// pagination.scss
|
||
|
|
||
|
.pagination {
|
||
|
width: 100%;
|
||
|
height: 3rem;
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.pagination li {
|
||
|
list-style-type: none;
|
||
|
}
|