0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 05:12:57 -05:00
This commit is contained in:
dragongoose 2024-06-02 12:04:25 -04:00
parent 9cbc027c68
commit 86995699c4
No known key found for this signature in database
GPG key ID: 01397EEC371CDAA5

View file

@ -83,11 +83,11 @@ export default {
<li v-for="streamer in data" :key="streamer.login" class="">
<div class="inline-flex bg-overlay0 p-2.5 m-1 rounded-md w-[22rem]">
<img :src="streamer.pfp" class="w-16 rounded-full" />
<div class="justify-between flex flex-col ml-2">
<div class="justify-between flex flex-col ml-2 truncate text-ellipsis w-[8rem]">
<h1 class="text-2xl font-bold">{{ streamer.username }}</h1>
<span>{{ abbreviate(streamer.followers) }} Followers</span>
</div>
<div class="my-auto ml-9">
<div class="m-auto">
<follow-button :username="streamer.login"></follow-button>
</div>
</div>