1
0
Fork 0

Updated CSS for mindflow admin.

This commit is contained in:
Alexander Andreev 2023-05-23 03:03:37 +04:00
parent 73cd9cd05b
commit 86c1d1e00c
Signed by: Arav
GPG Key ID: D22A817D95815393
1 changed files with 6 additions and 5 deletions

View File

@ -7,7 +7,11 @@ textarea {
border: none;
border-bottom: 1px solid var(--primary-color);
color: var(--text-color);
font: inherit; }
font: inherit;
max-width: 100%;
min-width: 100%; }
textarea { resize:vertical; }
form#add {
display: grid;
@ -25,10 +29,7 @@ form#add {
form#add select { grid-area: c; }
form#add input[name="new-category"] { grid-area: n; }
form#add input[name="title"] { grid-area: t; }
form#add textarea[name="body"] {
grid-area: b;
max-width: 100%;
min-width: 100%; }
form#add textarea[name="body"] { grid-area: b; }
form#add button[type="submit"] { grid-area: a; }
form.edit {