diff options
| author | David Hill <[email protected]> | 2026-01-20 18:05:21 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2026-01-20 20:34:45 +0000 |
| commit | 602b6be4d4376722b7c215326f05b82bc04bc1a8 (patch) | |
| tree | c8f277949b11abc6ab74f541ea8d3f9a3b1c52e8 /packages | |
| parent | 7f4277695d4a8b2de750e68c7c1bc5e4b4e4d05c (diff) | |
| download | opencode-602b6be4d4376722b7c215326f05b82bc04bc1a8.tar.gz opencode-602b6be4d4376722b7c215326f05b82bc04bc1a8.zip | |
update settings panel padding and make content full width
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/app/src/components/settings-general.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/app/src/components/settings-general.tsx b/packages/app/src/components/settings-general.tsx index 5b7c59d8c..29e8ae77a 100644 --- a/packages/app/src/components/settings-general.tsx +++ b/packages/app/src/components/settings-general.tsx @@ -36,7 +36,7 @@ export const SettingsGeneral: Component = () => { const soundOptions = [...SOUND_OPTIONS] return ( - <div class="flex flex-col h-full overflow-y-auto no-scrollbar"> + <div class="flex flex-col h-full overflow-y-auto no-scrollbar" style={{ padding: "0 40px 40px 40px" }}> <div class="sticky top-0 z-10" style={{ @@ -44,12 +44,12 @@ export const SettingsGeneral: Component = () => { "linear-gradient(to bottom, var(--surface-raised-stronger-non-alpha) calc(100% - 24px), transparent)", }} > - <div class="flex flex-col gap-1 p-8 max-w-[720px]"> + <div class="flex flex-col gap-1 pt-6 pb-8"> <h2 class="text-16-medium text-text-strong">General</h2> </div> </div> - <div class="flex flex-col gap-8 p-8 pt-0 max-w-[720px]"> + <div class="flex flex-col gap-8 w-full"> {/* Appearance Section */} <div class="flex flex-col gap-1"> <h3 class="text-14-medium text-text-strong pb-2">Appearance</h3> |
