Skip to content
This repository has been archived by the owner on May 12, 2023. It is now read-only.

Commit

Permalink
Remove all user selection
Browse files Browse the repository at this point in the history
  • Loading branch information
TehNut committed May 4, 2023
1 parent e2a28c7 commit ae8e776
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<main class="relative z-10 flex min-h-screen flex-col items-center justify-between">
<div class="{isHome ? 'h-80' : 'h-40'} flex-none transition-[height]">
<img class="h-full drop-shadow-lg" src="/logo.png" alt="HoloCure Logo" />
<img class="h-full drop-shadow-lg pointer-events-none" src="/logo.png" alt="HoloCure Logo" />
</div>
<Route path="/" component={DefaultView} />
<Route path="/settings" component={SettingsView} />
Expand Down
2 changes: 1 addition & 1 deletion src/app.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@tailwind components;

body {
@apply overflow-y-hidden;
@apply overflow-y-hidden select-none;
}

.btn {
Expand Down
2 changes: 1 addition & 1 deletion src/view/Download.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
src="/icon.png"
alt="HoloCure Icon"
style="--progress:{Math.min(progress - 3.5, 1000)}%"
class="absolute -top-2.5 left-[--progress] w-16 transition-[left]"
class="absolute -top-2.5 left-[--progress] w-16 transition-[left] pointer-events-none"
class:animate-wiggle={progress < 100}
/>
</div>
Expand Down

0 comments on commit ae8e776

Please sign in to comment.