larger text input and fix mobile
All checks were successful
ci/woodpecker/push/publish Pipeline was successful

This commit is contained in:
Mylloon 2023-12-29 18:05:18 +01:00
parent 10c15f87d6
commit 4b96b73c42
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -58,6 +58,17 @@ aside button {
float: right; float: right;
} }
aside textarea {
min-width: 40em;
min-height: 15em;
font-size: xx-large;
/* move resize arrow to the left */
direction: rtl;
text-align: left;
}
/* breakpoint */
@media only screen and (max-width: 500px) { @media only screen and (max-width: 500px) {
aside { aside {
float: unset; float: unset;
@ -65,16 +76,13 @@ aside button {
aside textarea { aside textarea {
width: 98%; width: 98%;
}
}
aside textarea { /* reset other values */
min-width: 20em; font-size: inherit;
min-height: 7em; min-width: inherit;
direction: inherit;
/* move resize arrow to the left */ text-align: inherit;
direction: rtl; }
text-align: left;
} }
/* index listing of posts */ /* index listing of posts */