Skip to content

Commit 2b54926

Browse files
committed
Make settings scroll area span full panel width
1 parent 0657d66 commit 2b54926

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

apps/code/src/renderer/features/settings/components/SettingsDialog.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,10 +204,13 @@ export function SettingsDialog() {
204204
style={{
205205
height: "100%",
206206
width: "100%",
207-
maxWidth: "800px",
208207
}}
209208
>
210-
<Box p="6" style={{ position: "relative", zIndex: 1 }}>
209+
<Box
210+
p="6"
211+
mx="auto"
212+
style={{ position: "relative", zIndex: 1, maxWidth: "800px" }}
213+
>
211214
<Flex direction="column" gap="4">
212215
<Text size="4" weight="medium">
213216
{CATEGORY_TITLES[activeCategory]}

0 commit comments

Comments
 (0)