Skip to content

Commit

Permalink
add missing class indicator of minute view
Browse files Browse the repository at this point in the history
  • Loading branch information
mskocik committed Feb 19, 2024
1 parent 3797f9d commit d81a42d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/Time.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@

<!-- svelte-ignore a11y-click-events-have-key-events -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<div class="sdt-clock" on:click|preventDefault={onClick} on:mousedown={onToggleMove} on:mousemove={e => { handleMoveMove && onClick(e) }} on:mouseup={onToggleMove} bind:this={clockEl}>
<div class="sdt-clock" class:is-minute-view={isMinuteView} on:click|preventDefault={onClick} on:mousedown={onToggleMove} on:mousemove={e => { handleMoveMove && onClick(e) }} on:mouseup={onToggleMove} bind:this={clockEl}>
<div class="sdt-middle-dot"></div>
<div class="sdt-hand-pointer" style={handCss}>
<div class="sdt-hand-circle"></div>
Expand Down

0 comments on commit d81a42d

Please sign in to comment.