fix increase of textarea in desktop vue
All checks were successful
ci/woodpecker/push/publish Pipeline was successful

This commit is contained in:
Mylloon 2024-03-09 21:30:39 +01:00
parent 83a91f1ef3
commit 0ec3f77653
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -1,3 +1,7 @@
:root {
--font-size: xx-large;
}
html {
font-family: "Courier New", Courier, monospace;
}
@ -64,7 +68,7 @@ aside textarea {
min-height: 15em;
resize: none;
overflow: hidden;
font-size: xx-large;
font-size: var(--font-size);
}
aside div {
@ -77,6 +81,7 @@ aside div::after {
content: attr(data-replicated-value) " ";
white-space: pre-wrap;
visibility: hidden;
font-size: var(--font-size);
}
aside div > textarea,
@ -92,11 +97,14 @@ aside div::after {
float: unset;
}
/* reset other values */
aside textarea {
/* reset other values */
min-width: inherit;
font-size: inherit;
}
/* aside div::after {
font-size: inherit;
} */
}
/* index listing of posts */