Skip to content

Commit

Permalink
fix padding for transcript
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantgillespie committed Mar 29, 2024
1 parent 6e31ff6 commit ca60244
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/tv/[show]/[episode].vue
Original file line number Diff line number Diff line change
Expand Up @@ -248,10 +248,10 @@ useSchemaOrg([
</nav>
<p v-show="activeTab === 'about'" id="about">{{ episode.description }}</p>
<div v-show="activeTab === 'transcript'" id="transcript" class="transcript">
<p class="notice">
<div class="notice">
<BaseIcon name="info" />
<span>Transcripts are automatically generated with AI and may contain errors.</span>
</p>
</div>
<BaseText :content="episode.video_transcript_html" color="foreground" />
</div>
</div>
Expand Down Expand Up @@ -432,7 +432,7 @@ iframe {
margin-block-start: var(--space-4);
overflow-y: auto;
background: var(--gray-100);
padding: var(--space-4) var(--space-6);
padding: var(--space-6);
border-radius: var(--rounded-lg);
.notice {
Expand Down

0 comments on commit ca60244

Please sign in to comment.