14 lines
221 B
CSS
14 lines
221 B
CSS
@layer components {
|
|
.pagination {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1ex;
|
|
}
|
|
}
|
|
}
|