Skip to content

Commit 7700f26

Browse files
committed
style(pref): add 60px bottom padding to General and Advanced panels
1 parent 57007f6 commit 7700f26

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/renderer/components/Pref/Advanced.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const Advanced = (props: IProps) => {
5858
}, [])
5959

6060
return (
61-
<Stack gap="40px">
61+
<Stack gap="40px" pb={60}>
6262
<div style={{ width: '100%' }}>
6363
<div>{lang.usage_data_title}</div>
6464
<div style={{ marginBottom: 8, opacity: 0.7, fontSize: 12 }}>{lang.usage_data_help}</div>

src/renderer/components/Pref/General.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const General = (props: IProps) => {
2121
const { platform } = agent
2222

2323
return (
24-
<Stack gap="16px">
24+
<Stack gap="16px" pb={60}>
2525
<Box
2626
style={{
2727
display: 'grid',

0 commit comments

Comments
 (0)