Skip to content

Commit

Permalink
refactor: 馃敤 added tooltip to request access button
Browse files Browse the repository at this point in the history
  • Loading branch information
bleak183 committed Apr 26, 2024
1 parent a218de1 commit 3d576a4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions apps/wizarr-frontend/src/modules/home/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@
</p>
<div class="flex flex-col space-y-2 sm:flex-row sm:justify-center sm:space-y-0 sm:space-x-3">
<FormKit type="button" @click="$router.push('/join')" theme="primary" suffix-icon="fas fa-arrow-right">{{ __("Get Started") }}</FormKit>
<!-- TODO: hiding unimplemented features -->
<!-- <span class="inline-flex items-center text-gray-500 dark:text-gray-400 justify-center"> or </span> -->
<!-- <FormKit type="button" :disabled="true" data-theme="transparent">{{ __("Request Access") }}</FormKit> -->
<span class="inline-flex items-center text-gray-500 dark:text-gray-400 justify-center"> or </span>
<VTooltip>
<FormKit type="button" :disabled="true" data-theme="transparent">{{ __("Request Access") }}</FormKit>
<template #popper>
<span>{{ __("Coming Soon") }}</span>
</template>
</VTooltip>
</div>
</div>
</section>
Expand Down

0 comments on commit 3d576a4

Please sign in to comment.