diff options
-rw-r--r-- | src/components/tabs.css | 4 | ||||
-rw-r--r-- | src/elements/forms.css | 2 | ||||
-rw-r--r-- | src/elements/grouping.css | 2 | ||||
-rw-r--r-- | src/elements/inline.css | 4 | ||||
-rw-r--r-- | src/elements/sections.css | 4 |
5 files changed, 6 insertions, 10 deletions
diff --git a/src/components/tabs.css b/src/components/tabs.css index e524518..8ca9d83 100644 --- a/src/components/tabs.css +++ b/src/components/tabs.css @@ -19,10 +19,6 @@ border-start-start-radius: .4em; border-start-end-radius: .4em; - - &:focus { - outline-bottom: none; - } &:active, &[aria-selected="true"] { transform: none; diff --git a/src/elements/forms.css b/src/elements/forms.css index 792b3ca..0790101 100644 --- a/src/elements/forms.css +++ b/src/elements/forms.css @@ -104,7 +104,7 @@ label[for] { } select[multiple] { - vertical-align: start; + vertical-align: top; } optgroup::before { diff --git a/src/elements/grouping.css b/src/elements/grouping.css index 637a4fd..ec70f58 100644 --- a/src/elements/grouping.css +++ b/src/elements/grouping.css @@ -27,7 +27,7 @@ pre { margin: var(--gap) 0; overflow-x: auto; - scrollbar-inline-size: thin; + scrollbar-width: thin; scrollbar-color: var(--accent) transparent; background: var(--bg); diff --git a/src/elements/inline.css b/src/elements/inline.css index a856bf2..f96d0b5 100644 --- a/src/elements/inline.css +++ b/src/elements/inline.css @@ -98,12 +98,12 @@ kbd kbd /* } sub { - vertical-align: end; + vertical-align: bottom; line-height: 1; } sup { - vertical-align: start; + vertical-align: top; line-height: 1; } diff --git a/src/elements/sections.css b/src/elements/sections.css index 8e360d7..539b426 100644 --- a/src/elements/sections.css +++ b/src/elements/sections.css @@ -31,7 +31,7 @@ nav { aside { @mixin box; - :--heading { + & :--heading { font-size: 1em; text-transform: none; letter-spacing: none; @@ -92,5 +92,5 @@ body > footer { } address { - density: 0; + --density: 0; } |