Skip to content

Commit

Permalink
Attempt to fix tooltip bug
Browse files Browse the repository at this point in the history
  • Loading branch information
FluxCapacitor2 committed Jul 21, 2023
1 parent ac29298 commit ec816e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@

A web app for automatic speech recognition using OpenAI's Whisper model running locally.

```sh
# Quickstart with Docker:
docker run --rm -it -p 8000:8000 -v whisper_models:/root/.cache/whisper ghcr.io/fluxcapacitor2/whisper-asr-webapp:main
```

![](/.github/readme_images/app_dark.png#gh-dark-mode-only)
![](/.github/readme_images/app_light.png#gh-light-mode-only)

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Tooltip.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<slot />
</div>
<p
class="absolute w-96 max-w-[24rem] shadow-md bg-gray-100 dark:bg-gray-900 p-2 rounded-md peer-hover:opacity-100 opacity-0 transition-all [text-transform:none] font-normal text-sm"
class="absolute w-96 max-w-[24rem] shadow-md bg-gray-100 dark:bg-gray-900 p-2 rounded-md invisible peer-hover:visible peer-hover:opacity-100 opacity-0 transition-all [text-transform:none] font-normal text-sm"
>
{tip}
</p>
Expand Down

0 comments on commit ec816e9

Please sign in to comment.