Skip to content

Commit

Permalink
Fix Settings header and user icon padding
Browse files Browse the repository at this point in the history
  • Loading branch information
NateLanza committed Jan 10, 2025
1 parent 1d171a5 commit f2c3ce2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/app/src/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ const Header = ({ data }: { data: CoreUpsetData }) => {
</Menu>
<IconButton
color="inherit"
sx={{ width: '32px', height: '32px' }}
sx={{ width: '32px', height: '32px', margin: '0 8px' }}
onClick={(e) => {
handleLoginOpen(e);
}}
Expand Down
2 changes: 1 addition & 1 deletion packages/upset/src/components/SettingsSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export const SettingsSidebar = () => {
// Half the indentation of the accordion titles
paddingLeft={BUTTON_PAD_LEFT}
>
<IconButton onClick={() => setCollapsed(true)}>
<IconButton onClick={() => setCollapsed(true)} style={{ marginRight: BUTTON_PAD_LEFT }}>
<MenuOpenIcon />
</IconButton>
Settings
Expand Down

0 comments on commit f2c3ce2

Please sign in to comment.