28 lines
562 B
CSS
28 lines
562 B
CSS
|
.pagination {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
margin-top: 20px;
|
||
|
align-items: center;
|
||
|
}
|
||
|
.pagination > div {
|
||
|
display: flex;
|
||
|
}
|
||
|
.pagination-action {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
border: 1px solid rgba(0,0,0,.125);
|
||
|
padding: 12px 12px;
|
||
|
border-radius: 0.25rem;
|
||
|
font-size: 13px;
|
||
|
font-weight: 500;
|
||
|
color: #adafb3;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
.pagination-action:first-child {
|
||
|
margin-right: 12px;
|
||
|
}
|
||
|
.pagination-action:last-child {
|
||
|
margin-right: 0;
|
||
|
}
|