mirror of
https://github.com/trwnh/hugo-theme-paradox.git
synced 2024-11-14 15:31:21 +00:00
37 lines
562 B
SCSS
37 lines
562 B
SCSS
|
.section-nav {
|
||
|
.container {
|
||
|
display: grid;
|
||
|
grid-gap: 1em;
|
||
|
}
|
||
|
a {
|
||
|
border-radius: 0.25rem;
|
||
|
display: flex;
|
||
|
padding: 1em;
|
||
|
gap: 1em;
|
||
|
text-decoration: none;
|
||
|
background: var(--ui-overlay);
|
||
|
color: var(--ui-overlay-text);
|
||
|
&:focus {
|
||
|
padding: 1em;
|
||
|
border: none;
|
||
|
}
|
||
|
}
|
||
|
.previous {
|
||
|
justify-content: start;
|
||
|
}
|
||
|
.arrow {
|
||
|
text-decoration: none;
|
||
|
color: inherit;
|
||
|
display: grid;
|
||
|
place-items: center;
|
||
|
font-size: 2em;
|
||
|
}
|
||
|
@media (min-width: 30rem) {
|
||
|
.container {
|
||
|
grid-template-columns: 1fr 1fr;
|
||
|
}
|
||
|
.next {
|
||
|
grid-column: 2;
|
||
|
}
|
||
|
}
|
||
|
}
|