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-xl: calc(3.25 * var(--radius-unit));
--radius-xxl: calc(5.25 * var(--sradius-unit));
--100vw: calc(100.0 * 1vw);
--100vh: calc(100.0 * 1vh);
}
html, body {
width: 100%;
height: 100%;
width: var(--100vw);
height: var(--100vh);
}
body {

View file

@ -8,10 +8,10 @@
<style>
.message {
display: flex;
align-items: center;
align-items: flex-start;
overflow-x: none;
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 {