mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
fix the broken channel image height
This commit is contained in:
parent
8713a7eaa9
commit
22ae1dc54a
1 changed files with 6 additions and 1 deletions
|
@ -15,7 +15,7 @@
|
|||
<div class="flex justify-center place-items-center">
|
||||
<div class="w-full grid grid-cols-3">
|
||||
<router-link :to="subscription.url" class="col-start-2 block flex text-center font-bold text-4xl">
|
||||
<img :src="subscription.avatar" class="rounded-full" width="48" height="48" />
|
||||
<img :src="subscription.avatar" class="rounded-full channel" width="48" height="48" />
|
||||
<span v-text="subscription.name" />
|
||||
</router-link>
|
||||
<button
|
||||
|
@ -95,3 +95,8 @@ export default {
|
|||
},
|
||||
};
|
||||
</script>
|
||||
<style>
|
||||
img.rounded-full.channel {
|
||||
height: fit-content;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue