Small display tweaks
This commit is contained in:
@@ -82,7 +82,7 @@
|
|||||||
</Tippy>
|
</Tippy>
|
||||||
<div class="flex flex-col">
|
<div class="flex flex-col">
|
||||||
<LongPress
|
<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}>
|
onLongPress={showMobileMenu}>
|
||||||
{#if showPubkey && event.pubkey !== $pubkey}
|
{#if showPubkey && event.pubkey !== $pubkey}
|
||||||
<div class="flex items-center gap-2">
|
<div class="flex items-center gap-2">
|
||||||
|
|||||||
@@ -92,7 +92,7 @@
|
|||||||
style={expandBlock ? "mask-image: linear-gradient(0deg, transparent 0px, black 100px)" : ""}>
|
style={expandBlock ? "mask-image: linear-gradient(0deg, transparent 0px, black 100px)" : ""}>
|
||||||
{#each shortContent as parsed, i}
|
{#each shortContent as parsed, i}
|
||||||
{#if isNewline(parsed)}
|
{#if isNewline(parsed)}
|
||||||
<ContentNewline value={parsed.value.slice(1)} />
|
<ContentNewline value={parsed.value.slice(1) || "\n"} />
|
||||||
{:else if isTopic(parsed)}
|
{:else if isTopic(parsed)}
|
||||||
<ContentTopic value={parsed.value} />
|
<ContentTopic value={parsed.value} />
|
||||||
{:else if isCode(parsed)}
|
{:else if isCode(parsed)}
|
||||||
|
|||||||
Reference in New Issue
Block a user