summaryrefslogtreecommitdiff
path: root/ui/lib/components/Message.svelte
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-11-05 19:02:23 -0500
committerOwen Jacobson <owen@grimoire.ca>2024-11-05 19:02:23 -0500
commit0f9a21934bfee61345894a38e89d7228cf1c07f1 (patch)
tree408ae1e1d92ea76b2cda39239a0c46b98e22fa2a /ui/lib/components/Message.svelte
parent2f67205b83009c874f4254a4789b1945668b3056 (diff)
File off some rough spots in the DOM.
* We had an unused layer of divs in the main UI. * The <div id="app"> div was superfluous with the body-level div in app.html. * Some formatting changes in one component?? Weird.
Diffstat (limited to 'ui/lib/components/Message.svelte')
-rw-r--r--ui/lib/components/Message.svelte12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/lib/components/Message.svelte b/ui/lib/components/Message.svelte
index ea6e304..68c5c91 100644
--- a/ui/lib/components/Message.svelte
+++ b/ui/lib/components/Message.svelte
@@ -26,12 +26,12 @@
display: flex;
}
.message-body {
- overflow: auto;
- max-width: 80vw;
- @media (width > 640px) {
- /* 21rem is width of the nav bar in full-screen mode. */
- max-width: calc(90vw - 21rem);
- }
+ overflow: auto;
+ max-width: 80vw;
+ @media (width > 640px) {
+ /* 21rem is width of the nav bar in full-screen mode. */
+ max-width: calc(90vw - 21rem);
+ }
}
.message-body:empty:after {
content: '.';