summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2026-01-19 15:20:28 +0000
committerDavid Hill <[email protected]>2026-01-19 17:10:26 +0000
commitc7f0cb3d2d516e1a4673df1cf5be4ee983a78bfb (patch)
tree5236ba4893af680d9d1bf8a87ac8efc8f492b84a
parenteb779a7cc5c1728471489a3304a6203716bd4d47 (diff)
downloadopencode-c7f0cb3d2d516e1a4673df1cf5be4ee983a78bfb.tar.gz
opencode-c7f0cb3d2d516e1a4673df1cf5be4ee983a78bfb.zip
fix: remove focus outline from dropdown menu
-rw-r--r--packages/ui/src/components/dropdown-menu.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/ui/src/components/dropdown-menu.css b/packages/ui/src/components/dropdown-menu.css
index d2dc03c50..cba041613 100644
--- a/packages/ui/src/components/dropdown-menu.css
+++ b/packages/ui/src/components/dropdown-menu.css
@@ -11,6 +11,11 @@
z-index: 50;
transform-origin: var(--kb-menu-content-transform-origin);
+ &:focus,
+ &:focus-visible {
+ outline: none;
+ }
+
&[data-closed] {
animation: dropdown-menu-close 0.15s ease-out;
}