Stack following streamers twice on top

This commit is contained in:
dragongoose
2025-09-29 21:14:50 -04:00
parent 6968915901
commit f67a298742
+2 -2
View File
@@ -111,8 +111,8 @@ export default {
<div v-if="following && following.length > 0" class="p-2 text-contrast">
<h1 class="font-bold text-5xl">{{ $t('home.following') }}</h1>
<p class="text-xl">{{ $t('home.streamersYouFollow') }}</p>
<ul class="overflow-x-auto whitespace-nowrap" @scroll="handleFollowingScroll">
<li v-for="streamer in followingStreaming" :key="streamer" class="mr-2 inline-block">
<ul class="overflow-x-auto whitespace-nowrap flex grid grid-rows-2 auto-cols-min gap-2 grid-flow-col" @scroll="handleFollowingScroll">
<li v-for="streamer in followingStreaming" :key="streamer" class="mr-2">
<stream-preview-vue :name="streamer"></stream-preview-vue>
</li>
</ul>