This commit is contained in:
dragongoose 2023-11-30 19:52:39 -05:00
parent 20e07e4c53
commit e7a30ddc60
No known key found for this signature in database
GPG key ID: 01397EEC371CDAA5

View file

@ -99,7 +99,7 @@ export default {
<div v-if="following && 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 flex-wrap justify-center overflow-x-scroll space-x-2 h-[18rem] items-center">
<ul class="flex flex-wrap justify-begin overflow-x-scroll space-x-2 mt-1 h-[19rem] items-center">
<li v-for="streamer in following" :key="streamer" class="inline-block">
<stream-preview-vue :name="streamer"></stream-preview-vue>
</li>