mirror of
https://github.com/mmjee/Piped-Material.git
synced 2024-12-06 19:26:36 +01:00
Fix text classes
This commit is contained in:
@@ -6,10 +6,10 @@
|
||||
:src="item.thumbnail"
|
||||
alt="thumbnail"
|
||||
/>
|
||||
<v-card-title class="subtitle-1">{{ item.title }}</v-card-title>
|
||||
<v-card-title class="text-subtitle-1">{{ item.title }}</v-card-title>
|
||||
<v-card-subtitle>{{ item.type }}</v-card-subtitle>
|
||||
<v-card-text>
|
||||
<router-link :to="item.uploaderUrl" class="subtitle-1 text-decoration-none" v-if="item.uploaderUrl && item.uploaderName && !hideChannel" custom v-slot="{ navigate }">
|
||||
<router-link :to="item.uploaderUrl" class="text-subtitle-1 text-decoration-none" v-if="item.uploaderUrl && item.uploaderName && !hideChannel" custom v-slot="{ navigate }">
|
||||
<h5 @click="navigate" @keypress.enter="navigate" role="link">{{ item.uploaderName }}</h5>
|
||||
</router-link>
|
||||
<span v-else-if="item.uploaderName">{{ item.uploaderName }}<br /></span>
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
alt="thumbnail"
|
||||
loading="lazy"
|
||||
/>
|
||||
<v-card-title class="subtitle-1">{{ video.title }}</v-card-title>
|
||||
<v-card-title class="text-subtitle-1">{{ video.title }}</v-card-title>
|
||||
<v-card-text>
|
||||
<router-link :to="video.uploaderUrl" class="subtitle-1 text-decoration-none" v-if="video.uploaderUrl && (video.uploaderName || video.uploader) && !hideChannel" custom v-slot="{ navigate }">
|
||||
<router-link :to="video.uploaderUrl" class="text-subtitle-1 text-decoration-none" v-if="video.uploaderUrl && (video.uploaderName || video.uploader) && !hideChannel" custom v-slot="{ navigate }">
|
||||
<h5 @click="navigate" @keypress.enter="navigate" role="link">{{ video.uploaderName || video.uploader }}</h5>
|
||||
</router-link>
|
||||
<slot />
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<v-col md="10" offset-md="1">
|
||||
<v-card outlined>
|
||||
<v-card-title class="text-h5">{{ video.title }}</v-card-title>
|
||||
<v-card-subtitle class="subtitle-1">
|
||||
<v-card-subtitle class="text-subtitle-1">
|
||||
<v-row>
|
||||
<v-col md="4" align-self="start">
|
||||
{{ $tc('counts.views', video.views, { n: addCommas(video.views) }) }}
|
||||
|
||||
Reference in New Issue
Block a user