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;
}
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) {
aside {
float: unset;
@ -65,18 +76,15 @@ aside button {
aside textarea {
width: 98%;
/* reset other values */
font-size: inherit;
min-width: inherit;
direction: inherit;
text-align: inherit;
}
}
aside textarea {
min-width: 20em;
min-height: 7em;
/* move resize arrow to the left */
direction: rtl;
text-align: left;
}
/* index listing of posts */
ul {
list-style: none;