@@ -1434,10 +1436,6 @@
align-items: center;
height: 100%;
}
- .bind.material-symbols-outlined {
- font-size: 2.2rem !important;
- font-weight: unset !important;
- }
.stats {
font-size: 2.3rem !important;
padding-top: 1.5rem;
diff --git a/common/views/Settings/HomeSectionsSettings.svelte b/common/views/Settings/HomeSectionsSettings.svelte
index f66df03..4367cef 100644
--- a/common/views/Settings/HomeSectionsSettings.svelte
+++ b/common/views/Settings/HomeSectionsSettings.svelte
@@ -17,7 +17,7 @@
$: {
if (draggingItemIndex != null && hoveredItemIndex != null && draggingItemIndex !== hoveredItemIndex) {
- swapItem(draggingItemIndex, hoveredItemIndex)
+ [homeSections[draggingItemIndex], homeSections[hoveredItemIndex]] = [homeSections[hoveredItemIndex], homeSections[draggingItemIndex]]
draggingItemIndex = hoveredItemIndex
}
@@ -78,12 +78,12 @@
{/if}