Compare commits

...

2 commits

2 changed files with 7 additions and 4 deletions

View file

@ -57,11 +57,14 @@
--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: 100%; width: var(--100vw);
height: 100%; height: var(--100vh);
} }
body { body {

View file

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