diff options
| author | Devin Griffin <[email protected]> | 2026-01-28 21:20:34 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-28 21:20:34 -0600 |
| commit | a7d7f5bb07eb197ce91cd7267d7b0103daf5613e (patch) | |
| tree | be57ed880e6cf2d01a5df4a6a81d75e5ec9865a7 /packages/ui/src | |
| parent | 8cdb82038a465dece6e9482d4e10adbf7719b6bb (diff) | |
| download | opencode-a7d7f5bb07eb197ce91cd7267d7b0103daf5613e.tar.gz opencode-a7d7f5bb07eb197ce91cd7267d7b0103daf5613e.zip | |
fix(app): make settings more responsive for mobile and small web/desktop (#10775)
Diffstat (limited to 'packages/ui/src')
| -rw-r--r-- | packages/ui/src/components/tabs.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/packages/ui/src/components/tabs.css b/packages/ui/src/components/tabs.css index 6b57f0c04..56c3e083f 100644 --- a/packages/ui/src/components/tabs.css +++ b/packages/ui/src/components/tabs.css @@ -375,8 +375,13 @@ &[data-variant="settings"] { [data-slot="tabs-list"] { - width: 200px; - min-width: 200px; + width: 150px; + min-width: 150px; + + @media (min-width: 640px) { + width: 200px; + min-width: 200px; + } padding: 12px; gap: 0; background-color: var(--background-base); |
