mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-22 05:12:57 -05:00
Add text
This commit is contained in:
parent
9d105cbe93
commit
61ad5eadba
1 changed files with 6 additions and 2 deletions
|
@ -55,13 +55,17 @@ export default {
|
|||
<template>
|
||||
<loading-screen v-if="!data && status != 'error'"></loading-screen>
|
||||
<error-message v-else-if="status == 'error'"></error-message>
|
||||
|
||||
<div v-else-if="data" class="md:max-w-[50rem] w-full mx-auto text-contrast flex justify-center">
|
||||
<div v-else-if="data" class="md:max-w-[50rem] w-full mx-auto text-contrast flex flex-col justify-center">
|
||||
<div v-if="data.length == 0" class="text-center">
|
||||
<h1 class="text-3xl font-bold">{{ $t("following.empty") }}</h1>
|
||||
<p>{{ $t("following.followAdvice") }}</p>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<h1 class="text-3xl font-bold">{{ $t("home.following") }}</h1>
|
||||
<p>{{ $t("home.streamersYouFollow") }}</p>
|
||||
</div>
|
||||
|
||||
<ul class="m-2 flex flex-wrap justify-center">
|
||||
<li v-for="streamer in data" class="">
|
||||
<div class="inline-flex bg-overlay0 p-2.5 m-1 rounded-md w-[22rem]">
|
||||
|
|
Loading…
Reference in a new issue