mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Fix title margin when there is no img source - shrink avatar size - add router-link for avatar - remove padding from title
This commit is contained in:
parent
df4c925a28
commit
f45067f453
1 changed files with 4 additions and 2 deletions
|
@ -35,9 +35,11 @@
|
|||
</router-link>
|
||||
|
||||
<div v-if="video.uploaderUrl && video.uploaderName && !hideChannel" style="display: flex; flex-flow: row; height: 15%">
|
||||
<img :src="video.uploaderAvatar" loading="lazy" class="uk-border-circle"/>
|
||||
<router-link class="uk-link-muted" :to="video.uploaderUrl">
|
||||
<img v-if="video.uploaderAvatar" :src="video.uploaderAvatar" loading="lazy" class="uk-border-circle" style="margin-right: 1rem; width: 32px; height: 32px;" />
|
||||
</router-link>
|
||||
|
||||
<div style="padding-left: 1rem">
|
||||
<div>
|
||||
<router-link class="uk-link-muted" :to="video.uploaderUrl">
|
||||
{{ video.uploaderName }} <font-awesome-icon
|
||||
v-if="video.uploaderVerified"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue