diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-06-10 23:39:24 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-06-10 23:39:24 -0700 |
| commit | 0fb6d49be075597fa0812325c7419789d19bcbe8 (patch) | |
| tree | f65a40a30f2f19a27ffd2f9e27e201499ee72b3e /src/components/AmbientControl.tsx | |
| parent | be38ca61ed85e4493e645c97d69251cdcc02b80b (diff) | |
Diffstat (limited to 'src/components/AmbientControl.tsx')
| -rw-r--r-- | src/components/AmbientControl.tsx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/components/AmbientControl.tsx b/src/components/AmbientControl.tsx index dd58235..56a2340 100644 --- a/src/components/AmbientControl.tsx +++ b/src/components/AmbientControl.tsx @@ -56,16 +56,21 @@ export function AmbientControl() { onChange={handleSoundChange} disabled={!available} style={{ + appearance: 'none', + WebkitAppearance: 'none', + MozAppearance: 'none', + colorScheme: 'dark', fontFamily: 'var(--font-sans)', fontSize: '13px', color: available ? 'var(--fg-1)' : 'var(--fg-4)', - background: 'var(--ink-3)', + background: 'var(--ink-2)', border: '1px solid var(--line-2)', borderRadius: 'var(--r-2)', - padding: '6px 10px', + padding: '8px 32px 8px 10px', outline: 'none', minWidth: '132px', flex: '0 0 auto', + lineHeight: 1.3, }} > {SOUND_OPTIONS.map((option) => ( |
