Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/components/overrides/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,6 @@ if (
margin-top: 0 !important;
}

:global(.pagination-links) {
margin-top: 3rem !important;
}

.feedback-prompt {
h2 {
color: var(--sl-color-white);
Expand Down
36 changes: 36 additions & 0 deletions src/styles/pagination.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.pagination-links {
display: flex !important;
justify-content: space-between;
margin-top: 3rem;

& > a {
flex-basis: unset;
flex-grow: unset;
width: fit-content;

padding: unset;
border: unset;
box-shadow: unset;

&[rel="prev"] {
text-align: right;
}

&[rel="next"] {
text-align: left;
}

& > span {
font-size: 0.75rem;

.link-title {
font-size: 1rem;
}
}

& > svg {
align-self: self-end;
color: theme("colors.cl1.brand.orange");
}
}
}