Follow button fix and stream preview cleanup #34

This commit is contained in:
dragongoose
2023-09-08 21:46:19 -04:00
parent 5a81d24b3f
commit cab9113509
5 changed files with 50 additions and 47 deletions

View File

@ -101,11 +101,11 @@ export default {
<div v-if="following.length > 0" class="p-2 text-white">
<h1 class="font-bold text-5xl">Following</h1>
<p class="text-xl">Streamers you follow</p>
<ul class="flex overflow-x-scroll flex-nowrap h-80 space-x-1">
<ul class="flex overflow-x-scroll space-x-2 flex-nowrap h-[22rem] items-center">
<li
v-for="streamer in following"
:key="streamer"
class="inline-block hover:scale-105 transition-transform"
class="inline-block"
>
<stream-preview-vue :name="streamer"></stream-preview-vue>
</li>