fix increase of textarea in desktop vue
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
This commit is contained in:
parent
83a91f1ef3
commit
0ec3f77653
1 changed files with 10 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue