Skip to content

Commit ae37bfd

Browse files
committed
Reduce waveform on podcast feature cards to 40px from 64px
1 parent c1e741a commit ae37bfd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dotcom-rendering/src/components/FeatureCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ const waveformStyles = css`
257257
bottom: 0;
258258
left: 0;
259259
z-index: 0;
260-
height: 64px;
260+
height: 40px;
261261
max-width: 100%;
262262
overflow: hidden;
263263
opacity: 0.3;
@@ -309,7 +309,7 @@ const getMedia = ({
309309

310310
const renderWaveform = (duration: string, bars: number) => (
311311
<div css={waveformStyles} className="waveform">
312-
<WaveForm seed={duration} height={64} bars={bars} barWidth={2} />
312+
<WaveForm seed={duration} height={40} bars={bars} barWidth={2} />
313313
</div>
314314
);
315315

0 commit comments

Comments
 (0)