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-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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue