Fix spacing with pagination
This commit is contained in:
parent
3fd87ff370
commit
5ccae7f4a3
1 changed files with 6 additions and 1 deletions
|
@ -150,6 +150,7 @@ footer {
|
|||
.pagination {
|
||||
text-align: center;
|
||||
font-feature-settings: var(--num);
|
||||
|
||||
a {
|
||||
min-width: 1rem;
|
||||
padding: 0 0.5rem;
|
||||
|
@ -168,7 +169,7 @@ footer {
|
|||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
width: max-content;
|
||||
margin: auto;
|
||||
margin: 0.5rem auto;
|
||||
|
||||
.prev {
|
||||
grid-column: 1;
|
||||
|
@ -180,6 +181,10 @@ footer {
|
|||
grid-column: 3;
|
||||
}
|
||||
}
|
||||
|
||||
& + section :first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (width < 1024px) {
|
||||
|
|
Loading…
Reference in a new issue