Skip to content

Commit

Permalink
reduces unnecessary fat padding
Browse files Browse the repository at this point in the history
  • Loading branch information
e-for-eshaan committed Dec 30, 2024
1 parent 996c46f commit 57ea7d2
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion web-server/src/components/DoraMetricsConfigurationSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,19 @@ export const DoraMetricsConfigurationSettings = () => {
Settings
</FlexBox>
</Button>
<Menu anchorEl={anchorEl.current} open={open.value} onClose={open.false}>
<Menu
anchorEl={anchorEl.current}
open={open.value}
onClose={open.false}
MenuListProps={{
sx: {
padding: 0
}
}}
sx={{
padding: 0
}}
>
<MenuItem
onClick={() => {
open.false();
Expand Down

0 comments on commit 57ea7d2

Please sign in to comment.