Skip to content

Commit 26cc1ad

Browse files
committed
Make settings scroll area span full panel width
1 parent a72f04f commit 26cc1ad

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
@@ -195,10 +195,13 @@ export function SettingsDialog() {
195195
style={{
196196
height: "100%",
197197
width: "100%",
198-
maxWidth: "800px",
199198
}}
200199
>
201-
<Box p="6" style={{ position: "relative", zIndex: 1 }}>
200+
<Box
201+
p="6"
202+
mx="auto"
203+
style={{ position: "relative", zIndex: 1, maxWidth: "800px" }}
204+
>
202205
<Flex direction="column" gap="4">
203206
<Text size="4" weight="medium">
204207
{CATEGORY_TITLES[activeCategory]}

0 commit comments

Comments
 (0)