Small display tweaks

This commit is contained in:
Jon Staab
2024-10-31 15:40:43 -07:00
parent 74f9531c5f
commit 94901143f2
2 changed files with 2 additions and 2 deletions

View File

@@ -82,7 +82,7 @@
</Tippy>
<div class="flex flex-col">
<LongPress
class="chat-bubble mx-1 flex max-w-sm flex-col gap-1 text-left"
class="chat-bubble mx-1 flex max-w-sm flex-col gap-1 text-left bg-alt"
onLongPress={showMobileMenu}>
{#if showPubkey && event.pubkey !== $pubkey}
<div class="flex items-center gap-2">

View File

@@ -92,7 +92,7 @@
style={expandBlock ? "mask-image: linear-gradient(0deg, transparent 0px, black 100px)" : ""}>
{#each shortContent as parsed, i}
{#if isNewline(parsed)}
<ContentNewline value={parsed.value.slice(1)} />
<ContentNewline value={parsed.value.slice(1) || "\n"} />
{:else if isTopic(parsed)}
<ContentTopic value={parsed.value} />
{:else if isCode(parsed)}