forked from coracle/flotilla
Format
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import {pubkey} from "@welshman/app"
|
||||
import Page from '@lib/components/Page.svelte'
|
||||
import Page from "@lib/components/Page.svelte"
|
||||
import Chat from "@app/components/Chat.svelte"
|
||||
|
||||
$: id = $pubkey!
|
||||
@@ -9,8 +9,8 @@
|
||||
<Page>
|
||||
<Chat {id}>
|
||||
<p slot="info">
|
||||
This is a place for your notes. Everything you write here is encrypted
|
||||
and stored on the nostr network.
|
||||
This is a place for your notes. Everything you write here is encrypted and stored on the nostr
|
||||
network.
|
||||
</p>
|
||||
</Chat>
|
||||
</Page>
|
||||
|
||||
@@ -56,14 +56,14 @@
|
||||
{/if}
|
||||
{#each sortBy(e => -e.created_at, $replies) as reply (reply.id)}
|
||||
<NoteCard event={reply} class="card2 bg-alt z-feature w-full">
|
||||
<div class="ml-12 col-3">
|
||||
<div class="col-3 ml-12">
|
||||
<Content event={reply} />
|
||||
<ThreadActions event={reply} {url} />
|
||||
</div>
|
||||
</NoteCard>
|
||||
{/each}
|
||||
<NoteCard event={$event} class="card2 bg-alt z-feature w-full">
|
||||
<div class="ml-12 col-3">
|
||||
<div class="col-3 ml-12">
|
||||
<Content event={$event} />
|
||||
<ThreadActions event={$event} {url} />
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user