This commit is contained in:
dragongoose
2023-11-04 19:52:55 -04:00
parent 961d3bfa67
commit 4dd94d4af1
20 changed files with 509 additions and 443 deletions

View File

@ -102,11 +102,7 @@ export default {
<h1 class="font-bold text-5xl">Following</h1>
<p class="text-xl">Streamers you follow</p>
<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"
>
<li v-for="streamer in following" :key="streamer" class="inline-block">
<stream-preview-vue :name="streamer"></stream-preview-vue>
</li>
</ul>