remove duplicate spaces button

This commit is contained in:
Jon Staab
2026-04-01 11:33:56 -07:00
parent 823a9c3271
commit 4b92ffe3c5
3 changed files with 10 additions and 7 deletions
+1
View File
@@ -77,6 +77,7 @@
controller.stop() controller.stop()
loginWithNip46(pubkey, clientSecret, signerPubkey, relays) loginWithNip46(pubkey, clientSecret, signerPubkey, relays)
setChecked("*")
} else { } else {
return pushToast({ return pushToast({
theme: "error", theme: "error",
+1 -4
View File
@@ -1,7 +1,6 @@
<script lang="ts"> <script lang="ts">
import {splitAt} from "@welshman/lib" import {splitAt} from "@welshman/lib"
import Widget from "@assets/icons/widget-4.svg?dataurl" import Widget from "@assets/icons/widget-4.svg?dataurl"
import Compass from "@assets/icons/compass.svg?dataurl"
import ImageIcon from "@lib/components/ImageIcon.svelte" import ImageIcon from "@lib/components/ImageIcon.svelte"
import Divider from "@lib/components/Divider.svelte" import Divider from "@lib/components/Divider.svelte"
import PrimaryNavItem from "@lib/components/PrimaryNavItem.svelte" import PrimaryNavItem from "@lib/components/PrimaryNavItem.svelte"
@@ -35,11 +34,9 @@
href="/spaces" href="/spaces"
title="All Spaces" title="All Spaces"
class="tooltip-right" class="tooltip-right"
prefix="no-highlight"
notification={otherSpaceNotifications}> notification={otherSpaceNotifications}>
<ImageIcon alt="All Spaces" src={Widget} size={8} /> <ImageIcon alt="All Spaces" src={Widget} size={8} />
</PrimaryNavItem> </PrimaryNavItem>
<PrimaryNavItem title="Add a Space" href="/spaces" class="tooltip-right">
<ImageIcon alt="Add a Space" src={Compass} size={8} />
</PrimaryNavItem>
{/each} {/each}
</div> </div>
+8 -3
View File
@@ -36,6 +36,13 @@
}, },
), ),
) )
const buttonClass = $derived(
cx("absolute right-3 btn btn-circle btn-neutral btn-sm", {
"top-3": fullscreen,
"-top-4": !fullscreen,
}),
)
</script> </script>
<div class="center fixed inset-0 z-modal"> <div class="center fixed inset-0 z-modal">
@@ -49,9 +56,7 @@
<div class={wrapperClass}> <div class={wrapperClass}>
<div class={innerClass} transition:fly> <div class={innerClass} transition:fly>
{#if !noEscape} {#if !noEscape}
<Button <Button class={buttonClass} onclick={clearModals}>
class="absolute -top-4 right-3 btn btn-circle btn-neutral btn-sm"
onclick={clearModals}>
<Icon icon={Close} size={6} /> <Icon icon={Close} size={6} />
</Button> </Button>
{/if} {/if}