diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-06 12:30:11 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-06 12:30:11 +0800 |
commit | 16458f6dd85005cfe9a1d687e3c2827f7b970d68 (patch) | |
tree | e0bb43942a993ce746e7b1c20ffdc98b987bcc1c /static | |
parent | css: Don't make the arrow so large (diff) | |
download | forge-16458f6dd85005cfe9a1d687e3c2827f7b970d68.tar.gz forge-16458f6dd85005cfe9a1d687e3c2827f7b970d68.tar.zst forge-16458f6dd85005cfe9a1d687e3c2827f7b970d68.zip |
css: *:focus-visible: outline color
Diffstat (limited to '')
-rw-r--r-- | static/style.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index 21dfa9b..278ea22 100644 --- a/static/style.css +++ b/static/style.css @@ -223,6 +223,10 @@ pre.chunk { display: none; } +*:focus-visible { + outline: 1.5px var(--primary-color) solid; +} + /* File display styles */ .file-patch + .file-patch { margin-top: 0.5rem; |