Skip to content

Commit 4c90b60

Browse files
committed
fix(transcript): remove transcript header
1 parent 630e1d0 commit 4c90b60

File tree

2 files changed

+5
-21
lines changed

2 files changed

+5
-21
lines changed
Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,14 @@
11
.rustic-transcript-container {
2-
padding-top: 16px;
3-
overflow-y: scroll;
4-
}
5-
6-
.rustic-transcript-header {
72
display: flex;
8-
padding-bottom: 10px;
3+
gap: 16px;
4+
margin-top: 16px;
95
}
106

11-
.rustic-transcript-header hr {
7+
.rustic-transcript-container hr {
128
border-right-width: medium;
13-
height: 21px;
14-
}
15-
16-
.rustic-transcript-header span {
17-
padding-left: 14px;
18-
line-height: 1.5;
199
}
2010

2111
.rustic-transcript-content {
2212
max-height: 25vh;
13+
overflow-y: scroll;
2314
}

src/components/media/transcript/transcript.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,7 @@ export default function Transcript(props: TranscriptProps) {
1414

1515
return (
1616
<Box className="rustic-transcript-container">
17-
{!isFullscreen && (
18-
<Box className="rustic-transcript-header">
19-
<Divider orientation="vertical" flexItem />
20-
<Typography variant="overline" color="text.secondary">
21-
Transcript
22-
</Typography>
23-
</Box>
24-
)}
17+
{!isFullscreen && <Divider orientation="vertical" flexItem />}
2518
<Typography
2619
className="rustic-transcript-content"
2720
data-cy="transcript"

0 commit comments

Comments
 (0)