fix: 💄 navigation buttons obstruct text content

This commit is contained in:
Sebin Nyshkim 2025-06-28 19:21:30 +02:00
parent 19472cda14
commit d48c9fb1c8

View file

@ -168,7 +168,12 @@
}
:host :where(.prev, .next) {
--btn-alignment: -0.75em;
grid-row: track;
@media (min-width: 35em) {
--btn-alignment: 0.5em;
}
}
:host :where(.prev, .next):disabled {
@ -184,12 +189,12 @@
:host .prev {
grid-column: prev;
left: 0.5em;
left: var(--btn-alignment);
}
:host .next {
grid-column: next;
right: 0.5em;
right: var(--btn-alignment);
}
:host .track {