Skip to content

Commit d11c03a

Browse files
committed
fix css
1 parent 7e81096 commit d11c03a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/renderer/components/Experiment/Audio/Audio.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ export default function Audio() {
226226
}}
227227
>
228228
{/* Large text input area at the top */}
229-
<FormControl sx={{ flexGrow: 1, mt: 1 }}>
229+
<FormControl sx={{ mt: 1 }}>
230230
<textarea
231231
value={text}
232232
onChange={(e) => setText(e.target.value)}

src/renderer/components/Experiment/Audio/AudioHistory.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const AudioHistory = React.forwardRef<HTMLDivElement, AudioHistoryProps>(
3737
<Sheet
3838
ref={ref}
3939
variant="plain"
40-
sx={{ borderRadius: 'md', overflowY: 'scroll', pr: 1 }}
40+
sx={{ borderRadius: 'md', overflowY: 'auto', pr: 1 }}
4141
>
4242
<List sx={{ p: 0 }}>
4343
{Array.isArray(audioHistory) && audioHistory.length > 0 ? (

0 commit comments

Comments
 (0)