Skip to content

Commit 570554c

Browse files
committedJan 22, 2025·
fix(mui-dialog): extra scrollbar issue
1 parent 845c0ff commit 570554c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎packages/theme/src/lib/legacy-theme.ts‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1136,10 +1136,10 @@ export const legacyTheme = {
11361136
flexWrap: 'wrap'
11371137
},
11381138
spacing: {
1139-
marginBottom: '-8px',
1139+
gap: '8px',
11401140
'.MuiButton-root': {
1141-
marginBottom: '8px'
1142-
}
1141+
margin: 0,
1142+
},
11431143
},
11441144
},
11451145
},

‎packages/theme/src/lib/light-theme.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1049,9 +1049,9 @@ export const lightTheme = {
10491049
flexWrap: 'wrap',
10501050
},
10511051
spacing: {
1052-
marginBottom: '-8px',
1052+
gap: '8px',
10531053
'.MuiButton-root': {
1054-
marginBottom: '8px',
1054+
margin: 0,
10551055
},
10561056
},
10571057
},

0 commit comments

Comments
 (0)
Please sign in to comment.