Skip to content

Commit bc66b95

Browse files
committed
Minor QOL updates
1 parent 02e0a86 commit bc66b95

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/lib/components/SpeakerList.svelte

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import { popup } from "@skeletonlabs/skeleton";
1111
import { sortable } from "$lib/util";
1212
import { tick } from "svelte";
13+
import { flip } from "svelte/animate";
1314
1415
/**
1516
* The order of speakers for the speaker's list.
@@ -227,6 +228,7 @@
227228
class:variant-ghost-primary={draggingSpeaker == speaker}
228229
use:bindToMap={[liElements, speaker]}
229230
data-id={i}
231+
animate:flip={{ duration: 150 }}
230232
>
231233
<button
232234
class="btn-icon handle cursor-grab"

src/routes/admin/+layout.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
class="btn btn-icon"
3030
aria-label="Return to Dashboard"
3131
title="Return to Dashboard"
32+
tabindex={0}
3233
>
3334
<Icon icon="mdi:chevron-left" width="36" height="36" />
3435
</a>

src/routes/dashboard/points-motions/+page.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@
152152
href="{base}/dashboard/current-motion"
153153
data-label="Accept {delName}'s Motion"
154154
title="Accept {delName}'s Motion"
155+
tabindex={0}
155156
>
156157
<Icon icon="mdi:check" width="24" height="24" class="text-success-700" />
157158
</a>

0 commit comments

Comments
 (0)