Remove page_navigation stylesheet

This commit is contained in:
Eryn Wells 2024-07-23 08:42:37 -07:00
parent 36bee20ec4
commit 3b642fa002

View file

@ -1,44 +0,0 @@
{{/*
099_page_navigation.css
Eryn Wells <eryn@erynwells.me>
*/}}
/******************
# PAGE NAVIGATION
******************/
.page-navigation {
align-items: baseline;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
list-style: none;
padding-inline: 0;
&:has(.next-page:only-child) {
justify-content: flex-end;
}
li {
display: flex block;
height: 2lh;
}
.next-page {
text-align: right;
}
.previous-page::before {
content: "←";
padding-inline-end: var(--space-s);
}
.next-page::after {
content: "→";
padding-inline-start: var(--space-s);
}
}