Replace the arrows in the page navigation with -> and <-

This commit is contained in:
Eryn Wells 2024-10-07 21:01:01 -07:00
parent d94c55f886
commit 38e2d8fde0

View file

@ -23,13 +23,19 @@
text-align: right;
}
.previous-page::before,
.next-page::after {
color: var(--text-color-secondary);
font-family: var(--font-family-monospace);
}
.previous-page::before {
content: "←";
content: "<-";
padding-inline-end: var(--space-s);
}
.next-page::after {
content: "";
content: "->";
padding-inline-start: var(--space-s);
}
}