+1
-1
src/components/AccountSelector.svelte
+1
-1
src/components/AccountSelector.svelte
···
109
<!-- svelte-ignore a11y_click_events_have_key_events -->
110
<!-- svelte-ignore a11y_no_static_element_interactions -->
111
<div
112
-
class="absolute left-0 z-10 mt-3 min-w-52 animate-fade-in-scale-fast overflow-hidden rounded-sm border-2 border-(--nucleus-accent) bg-(--nucleus-bg)/94 shadow-2xl backdrop-blur-lg transition-all"
113
onclick={(e) => e.stopPropagation()}
114
>
115
{#if accounts.length > 0}
···
109
<!-- svelte-ignore a11y_click_events_have_key_events -->
110
<!-- svelte-ignore a11y_no_static_element_interactions -->
111
<div
112
+
class="absolute left-0 z-20 mt-3 min-w-52 animate-fade-in-scale-fast overflow-hidden rounded-sm border-2 border-(--nucleus-accent) bg-(--nucleus-bg)/94 shadow-2xl backdrop-blur-lg transition-all"
113
onclick={(e) => e.stopPropagation()}
114
>
115
{#if accounts.length > 0}
+1
src/components/Popup.svelte
+1
src/components/Popup.svelte
+1
-1
src/lib/accounts.ts
+1
-1
src/lib/accounts.ts
+2
-2
src/routes/+page.svelte
+2
-2
src/routes/+page.svelte
···
231
232
<div class="mx-auto max-w-2xl">
233
<!-- Sticky header -->
234
-
<div class="sticky top-0 z-10 bg-(--nucleus-bg) p-4">
235
<div class="mb-6 flex items-center justify-between">
236
<div>
237
<h1 class="text-3xl font-bold tracking-tight">nucleus</h1>
···
291
</div>
292
{#if errorsOpen}
293
<div
294
-
class="absolute top-full right-0 left-0 z-50 mt-2 flex animate-fade-in-scale-fast flex-col gap-1 error-disclaimer shadow-lg transition-all"
295
>
296
{#each errors as error, idx (idx)}
297
<p>• {error}</p>
···
231
232
<div class="mx-auto max-w-2xl">
233
<!-- Sticky header -->
234
+
<div class="sticky top-0 z-10 bg-(--nucleus-bg) pb-2">
235
<div class="mb-6 flex items-center justify-between">
236
<div>
237
<h1 class="text-3xl font-bold tracking-tight">nucleus</h1>
···
291
</div>
292
{#if errorsOpen}
293
<div
294
+
class="absolute top-full right-0 left-0 z-10 mt-2 flex animate-fade-in-scale-fast flex-col gap-1 error-disclaimer shadow-lg transition-all"
295
>
296
{#each errors as error, idx (idx)}
297
<p>• {error}</p>