Skip to content

Commit

Permalink
Fix code format
Browse files Browse the repository at this point in the history
  • Loading branch information
apporc committed Jun 27, 2024
1 parent ba446d1 commit 1a45524
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/elements/input/token/selector/row.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<script>
import type {Readable} from 'svelte/store'
import Icon from '~/components/elements/icon.svelte'
import TokenImage from '~/components/elements/image/token.svelte'
import type {Token} from '~/stores/tokens'
Expand Down
2 changes: 2 additions & 0 deletions src/components/elements/slider.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,9 @@
on:touchstart={onDragStart}
on:mousedown={onDragStart}
on:mouseover={() => (thumbHover = true)}
on:focus={() => (thumbHover = true)}
on:mouseout={() => (thumbHover = false)}
on:blur={() => (thumbHover = false)}
>
{#if holding || thumbHover}
<div
Expand Down
2 changes: 1 addition & 1 deletion src/pages/earn/components/label.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
flex: 1;
text-align: right;
}
changeStep {
.changeStep {
color: var(--main-blue);
cursor: pointer;
display: flex;
Expand Down

0 comments on commit 1a45524

Please sign in to comment.