Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit

Permalink
fix: tiny change
Browse files Browse the repository at this point in the history
  • Loading branch information
1nayu committed Oct 7, 2024
1 parent f59f99c commit 575c17c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 16 deletions.
29 changes: 15 additions & 14 deletions components/match/matchEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -216,21 +216,22 @@ export default function MatchEditor(props: MatchEditorProps) {
<Stack mx={2} my={2} spacing={2} direction={"column"}>

<Stack
direction={"row"} spacing={1}
sx={{overflow:"auto"}}
sx={{width:"100%", overflow:"auto"}}
>
<Chip
label={`審判:${judgeTeamName}`}
avatar={<Avatar><HiFlag/></Avatar>} color={"secondary"}
/>
<Chip
label={`試合場所:${locationName}`}
avatar={<Avatar><HiMapPin/></Avatar>} color={"secondary"}
/>
<Chip
label={`試合開始:${formattedDate}`}
avatar={<Avatar><HiClock/></Avatar>} color={"secondary"}
/>
<Stack width={"100%"} direction={"row"} >
<Chip
label={`審判:${judgeTeamName}`}
avatar={<Avatar><HiFlag/></Avatar>} color={"secondary"}
/>
<Chip
label={`試合場所:${locationName}`}
avatar={<Avatar><HiMapPin/></Avatar>} color={"secondary"}
/>
<Chip
label={`試合開始:${formattedDate}`}
avatar={<Avatar><HiClock/></Avatar>} color={"secondary"}
/>
</Stack>
</Stack>

<Divider/>
Expand Down
4 changes: 2 additions & 2 deletions components/theme/colorModeProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ const baseTheme = {
},
'body::-webkit-scrollbar': {
width: '5px',
height: '8px'
height: '10px'
},
'::-webkit-scrollbar': {
width: '5px',
height: '3px'
height: '7px'
},
'::-webkit-scrollbar-track': {
background: "rgba(47,57,118,0)",
Expand Down

0 comments on commit 575c17c

Please sign in to comment.