diff options
| author | Fuwn <[email protected]> | 2026-05-15 09:20:20 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-05-15 09:20:20 +0000 |
| commit | 9ea39d0e692b21c600bb9e9581ea4488f263f9cd (patch) | |
| tree | 271306c69077b0b9280eab52217899e798625503 /src/styles | |
| parent | fix(a11y): make header Dropdown keyboard-operable (diff) | |
| download | due.moe-9ea39d0e692b21c600bb9e9581ea4488f263f9cd.tar.xz due.moe-9ea39d0e692b21c600bb9e9581ea4488f263f9cd.zip | |
style(a11y): round the focus-visible ring
Add border-radius: 4px to the global :focus-visible rule so the ring
looks consistent on bare anchors and header items, not just on
elements that already carry their own radius.
Diffstat (limited to 'src/styles')
| -rw-r--r-- | src/styles/normalise.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/styles/normalise.css b/src/styles/normalise.css index f38ff649..37151e5f 100644 --- a/src/styles/normalise.css +++ b/src/styles/normalise.css @@ -19,6 +19,7 @@ a:hover { :focus-visible { outline: 2px solid var(--base0D); outline-offset: 2px; + border-radius: 4px; } code { |