Skip to content

Commit

Permalink
fix: ホームボタンのスタイル調整
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuma-Satake committed Jun 1, 2024
1 parent 26a4a43 commit 7a84588
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const Header: FC<Props> = ({ title }) => {
}}
>
<Tooltip title="ホーム">
<Button onClick={handleClickHomeButton} variant="outlined">
<Button onClick={handleClickHomeButton} variant="outlined" size="small">
<HomeIcon />
</Button>
</Tooltip>
Expand Down
4 changes: 2 additions & 2 deletions src/components/LayoutContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ export const LayoutContainer: FC<Props> = ({ children, title }) => {
<Container maxWidth="lg">
<Box
sx={{
height: '5dvh',
height: '7dvh',
}}
>
<Header title={title} />
</Box>
<Box
sx={{
height: '90dvh',
height: '88dvh',
bgcolor: 'primary.light',
borderRadius: 10,
p: 10,
Expand Down

0 comments on commit 7a84588

Please sign in to comment.