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