diff --git a/src/layouts/Base/base.css b/src/layouts/Base/base.css index 62e5419..5570c31 100644 --- a/src/layouts/Base/base.css +++ b/src/layouts/Base/base.css @@ -2,6 +2,10 @@ @import "open-props/normalize"; @import url('./variables.css'); +:root { + font-family: var(--font-system-ui); +} + :not(:defined) { display: none; } html, body { @@ -64,3 +68,16 @@ a { h1, h2, h3, h4, h5, h6, p, dt, li, dd, blockquote, td { max-inline-size: 100%; } + +.visually-hidden { + color: transparent; + overflow: hidden; + clip: rect(0 0 0 0); + clip-path: inset(50%); + height: 1px; + position: absolute; + white-space: nowrap; + width: 1px; + pointer-events: none; + user-select: none; +}