Compare commits
2 commits
ec7de22dca
...
314a7f2be0
Author | SHA1 | Date | |
---|---|---|---|
|
314a7f2be0 | ||
|
3bcf605ef9 |
2 changed files with 7 additions and 4 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue