0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 13:22:58 -05:00

Clean packages and add animation to homepage stream view

This commit is contained in:
dragongoose 2023-03-31 08:03:45 -04:00
parent 354ae5a959
commit fba695a80e

View file

@ -95,7 +95,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 flex-nowrap h-80 space-x-1">
<li v-for="streamer in following" :key="streamer" class="inline-block">
<li v-for="streamer in following" :key="streamer" class="inline-block hover:scale-105 transition-transform">
<stream-preview-vue :name="streamer"></stream-preview-vue>
</li>
</ul>