diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-01-11 13:20:18 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-01-11 13:24:07 -0500 |
| commit | 25c066d7bd59a921e04504656b3c94ef89f36419 (patch) | |
| tree | 65f6503e57d8bc75bac70e621f4707cf0e5b31b5 /ui/lib/components | |
| parent | 4fc3fffb8de27d27928f488e58e81739a3021e10 (diff) | |
Use margins, rather than alternating float/non-float elements, to lay out own/other messages.
Diffstat (limited to 'ui/lib/components')
| -rw-r--r-- | ui/lib/components/ActiveChannel.svelte | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/lib/components/ActiveChannel.svelte b/ui/lib/components/ActiveChannel.svelte index ba62d6c..9c181e4 100644 --- a/ui/lib/components/ActiveChannel.svelte +++ b/ui/lib/components/ActiveChannel.svelte @@ -5,7 +5,5 @@ </script> {#each messageRuns as { sender, messages }} - <div> - <MessageRun {sender} {messages} /> - </div> + <MessageRun {sender} {messages} /> {/each} |
