Compare commits

..

No commits in common. "314a7f2be02bface4085fb3ce6920ab9aa86fb8e" and "ec7de22dca41221159dd86131cbf8f2689080715" have entirely different histories.

2 changed files with 4 additions and 7 deletions

View file

@ -57,14 +57,11 @@
--radius-lg: calc(2 * var(--radius-unit)); --radius-lg: calc(2 * var(--radius-unit));
--radius-xl: calc(3.25 * var(--radius-unit)); --radius-xl: calc(3.25 * var(--radius-unit));
--radius-xxl: calc(5.25 * var(--sradius-unit)); --radius-xxl: calc(5.25 * var(--sradius-unit));
--100vw: calc(100.0 * 1vw);
--100vh: calc(100.0 * 1vh);
} }
html, body { html, body {
width: var(--100vw); width: 100%;
height: var(--100vh); height: 100%;
} }
body { body {

View file

@ -8,10 +8,10 @@
<style> <style>
.message { .message {
display: flex; display: flex;
align-items: flex-start; align-items: center;
overflow-x: none; overflow-x: none;
word-break: break-all; word-break: break-all;
padding: var(--space-xxs) var(--space-normplus) var(--space-xxs) var(--space-normplus); padding: 1px var(--space-normplus) 1px var(--space-normplus);
} }
.message .edit-message { .message .edit-message {