From 4e2d978eb5fc9457d5b913bc10faf1266e6dcda4 Mon Sep 17 00:00:00 2001 From: Solstice Date: Tue, 9 Jun 2026 01:02:30 -0700 Subject: chore: final polish and preparation for release --- src/components/AmbientControl.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/components/AmbientControl.tsx') diff --git a/src/components/AmbientControl.tsx b/src/components/AmbientControl.tsx index 9eabb09..dd58235 100644 --- a/src/components/AmbientControl.tsx +++ b/src/components/AmbientControl.tsx @@ -24,15 +24,18 @@ export function AmbientControl() { style={{ display: 'flex', alignItems: 'center', + flexWrap: 'wrap', gap: '12px', + rowGap: '8px', padding: '8px 10px', border: '1px solid var(--line-2)', borderRadius: 'var(--r-3)', background: 'rgba(17, 21, 28, 0.85)', boxShadow: 'var(--shadow-1)', + minWidth: 0, }} > -
+
Ambient @@ -41,6 +44,7 @@ export function AmbientControl() { fontFamily: 'var(--font-sans)', fontSize: '12px', color: available ? 'var(--fg-3)' : 'var(--negative)', + lineHeight: 1.4, }} > {available ? 'Looping background audio' : 'Add rain.ogg, cafe.ogg, or white_noise.ogg'} @@ -61,6 +65,7 @@ export function AmbientControl() { padding: '6px 10px', outline: 'none', minWidth: '132px', + flex: '0 0 auto', }} > {SOUND_OPTIONS.map((option) => ( @@ -70,7 +75,7 @@ export function AmbientControl() { ))} -
+