Skip to content

Commit 2f35a4c

Browse files
committed
increase duty name width in editor
1 parent 65f0bf6 commit 2f35a4c

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

src/features/meetings/duties_schedule/audio_video/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const AudioVideo = () => {
2525
/>
2626

2727
<Stack spacing="8px" flex={1} width="100%">
28-
<Grid container spacing={2}>
28+
<Grid container spacing="8px">
2929
<Grid size={{ mobile: 12, laptop: 6 }}>
3030
<PersonSelector
3131
label={t('tr_brother')}

src/features/meetings/duties_schedule/auditorium_attendant/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const AuditoriumAttendant = () => {
2525
/>
2626

2727
<Stack spacing="8px" flex={1} width="100%">
28-
<Grid container spacing={2}>
28+
<Grid container spacing="8px">
2929
<Grid size={{ mobile: 12, laptop: 6 }}>
3030
<PersonSelector
3131
label={t('tr_brother')}

src/features/meetings/duties_schedule/duty_name/index.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const DutyName = ({ icon, duty }: DutyNameProps) => {
99
return (
1010
<Box
1111
sx={{
12-
minWidth: '200px',
12+
minWidth: '240px',
1313
borderRadius: 'var(--radius-l)',
1414
padding: '8px',
1515
display: 'flex',
@@ -21,7 +21,11 @@ const DutyName = ({ icon, duty }: DutyNameProps) => {
2121
}}
2222
>
2323
{icon}
24-
<Typography className="body-small-semibold" color="var(--accent-dark)">
24+
<Typography
25+
className="body-small-semibold"
26+
color="var(--accent-dark)"
27+
sx={{ textWrap: 'wrap' }}
28+
>
2529
{duty}
2630
</Typography>
2731
</Box>

src/features/meetings/duties_schedule/stage/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const Stage = () => {
2525
/>
2626

2727
<Stack spacing="8px" flex={1} width="100%">
28-
<Grid container spacing={2}>
28+
<Grid container spacing="8px">
2929
<Grid size={{ mobile: 12, laptop: 6 }}>
3030
<PersonSelector
3131
label={t('tr_brother')}

0 commit comments

Comments
 (0)