pnpm format

This commit is contained in:
Ian Donahue 2023-03-30 18:46:58 +02:00
parent c766b6bffa
commit 952e50bc91
2 changed files with 8 additions and 4 deletions

View File

@ -3,7 +3,8 @@
@tailwind components;
@tailwind utilities;
a, button {
a,
button {
@apply cursor-default;
-webkit-user-select: none;
-webkit-user-drag: none;
@ -11,7 +12,6 @@ a, button {
cursor: default;
}
.drag-none {
-webkit-user-select: none;
-webkit-user-drag: none;

View File

@ -343,11 +343,15 @@
<div class="play-button-button-container group">
{#if interval}
<button class="playback-button group" on:click={stop}>
<IconPlayerPauseFilled class="playback-button-play icon-pointer h-6 w-6 fill-red-400 group-hover:fill-zinc-100" />
<IconPlayerPauseFilled
class="playback-button-play icon-pointer fill-red-400 h-6 w-6 group-hover:fill-zinc-100"
/>
</button>
{:else}
<button class="playback-button group" on:click={play}>
<IconPlayerPlayFilled class="playback-button-pause icon-pointer h-6 w-6 fill-red-400 group-hover:fill-zinc-100" />
<IconPlayerPlayFilled
class="playback-button-pause icon-pointer fill-red-400 h-6 w-6 group-hover:fill-zinc-100"
/>
</button>
{/if}
</div>