run eslint
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
<template>
|
||||
<p class="text-gray-300 text-center my-10">
|
||||
<p class="my-10 text-center text-gray-300">
|
||||
Je zit momenteel niet in een team. Maak een team aan of wacht tot dat je geinvite wordt
|
||||
</p>
|
||||
<div class="flex w-full justify-center gap-10 mb-5">
|
||||
<div class="mb-5 flex w-full justify-center gap-10">
|
||||
<span
|
||||
class="text-primary font-bold hover:cursor-pointer" :class="{ 'underline underline-offset-4': !createTeam }"
|
||||
class="font-bold text-primary hover:cursor-pointer" :class="{ 'underline underline-offset-4': !createTeam }"
|
||||
@click="createTeam = false"
|
||||
>
|
||||
Team Invites
|
||||
</span>
|
||||
<span class="text-primary font-bold hover:cursor-pointer" :class="{ 'underline underline-offset-4': createTeam }"
|
||||
<span
|
||||
class="font-bold text-primary hover:cursor-pointer" :class="{ 'underline underline-offset-4': createTeam }"
|
||||
@click="createTeam = true"
|
||||
>
|
||||
Create Team
|
||||
@@ -18,7 +19,7 @@
|
||||
<div v-if="!createTeam" class="text-center text-gray-300">
|
||||
You don't have any team invites
|
||||
</div>
|
||||
<div v-else class="w-full flex flex-col items-center gap-5">
|
||||
<div v-else class="flex w-full flex-col items-center gap-5">
|
||||
<Input class="w-full max-w-sm">Naam / Prefix</Input>
|
||||
<Colorpicker class="w-full max-w-sm" />
|
||||
<Button>Create Team</Button>
|
||||
|
Reference in New Issue
Block a user