forked from coracle/flotilla
Fix self-closing tags
This commit is contained in:
@@ -255,13 +255,13 @@
|
||||
</svelte:head>
|
||||
|
||||
{#await ready}
|
||||
<div data-theme={$theme} />
|
||||
<div data-theme={$theme}></div>
|
||||
{:then}
|
||||
<div data-theme={$theme}>
|
||||
<AppContainer>
|
||||
<slot />
|
||||
</AppContainer>
|
||||
<ModalContainer />
|
||||
<div class="tippy-target" />
|
||||
<div class="tippy-target"></div>
|
||||
</div>
|
||||
{/await}
|
||||
|
||||
@@ -126,7 +126,8 @@
|
||||
{#if $notifications.has(threadsPath)}
|
||||
<div
|
||||
class="absolute -right-3 -top-1 h-2 w-2 rounded-full bg-primary-content"
|
||||
transition:fade />
|
||||
transition:fade>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</Link>
|
||||
@@ -142,7 +143,7 @@
|
||||
<ChannelName {url} {room} />
|
||||
</div>
|
||||
{#if $notifications.has(roomPath)}
|
||||
<div class="absolute right-1 top-1 h-2 w-2 rounded-full bg-primary" transition:fade />
|
||||
<div class="absolute right-1 top-1 h-2 w-2 rounded-full bg-primary" transition:fade></div>
|
||||
{/if}
|
||||
</Link>
|
||||
{/each}
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
</script>
|
||||
|
||||
<div class="relative flex flex-col-reverse gap-3 px-2">
|
||||
<div class="absolute left-[51px] top-32 h-[calc(100%-248px)] w-[2px] bg-neutral" />
|
||||
<div class="absolute left-[51px] top-32 h-[calc(100%-248px)] w-[2px] bg-neutral"></div>
|
||||
{#if $event}
|
||||
{#if !showReply}
|
||||
<div class="flex justify-end px-2 pb-2">
|
||||
|
||||
Reference in New Issue
Block a user