Skip to content

Commit

Permalink
fix: カレンダーの文字はみ出しを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuma-Satake committed Mar 14, 2024
1 parent 848debf commit 0eb09d6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/GuestPage/UserCalender.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,13 @@ export const UserCalender: FC<Props> = ({ calendars }) => {
>
<Typography
variant="caption"
sx={{ color: "primary.main", lineHeight: "1.2" }}
sx={{
color: "primary.main",
lineHeight: "1.2",
overflow: "hidden",
textOverflow: "ellipsis",
whiteSpace: "nowrap",
}}
>
{duration}
<br />
Expand Down

0 comments on commit 0eb09d6

Please sign in to comment.