Rename content slot to main, remove h1 from header for better
Some checks failed
Build And Deploy / build-and-deploy (push) Has been cancelled

accessibility, and unify SVG fill color to #fff

Update BaseLayout to use a header <p> for the website title, rename the
main slot/id to
"main", and update all pages to match. Add CSS rule svg { fill:
currentColor }
and size header > p the same as h1. Fix a minor comment typo.
This commit is contained in:
badblocks 2026-03-22 13:56:24 -07:00
parent 75a413621d
commit da4925753d
No known key found for this signature in database
8 changed files with 22 additions and 21 deletions

View file

@ -4,7 +4,8 @@ h1.giga {
h1.mega {
font-size: var(--pt-canon);
}
h1 {
h1,
header > p {
font-size: var(--pt-double-great-primer);
}
h2 {
@ -417,7 +418,7 @@ textarea,
display: grid;
}
.textarea-wrapper::after {
content: attr(data-replicated-value) " "; /* Needed to preventy jumpy behavior */
content: attr(data-replicated-value) " "; /* Needed to prevent jumpy behavior */
visibility: hidden;
white-space: pre-wrap;
}
@ -463,6 +464,10 @@ input[type="reset"]:active:enabled {
background-color: var(--color-accent-bright);
}
svg {
fill: currentColor;
}
/*input[type="checkbox"],
input[type="radio"] {
appearance: none;