1
0

In mindflow admin changed grid template.

This commit is contained in:
Alexander Andreev 2023-09-25 18:49:26 +04:00
parent b0b1730699
commit e705aa80a5
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -17,11 +17,9 @@ form#add {
display: grid; display: grid;
gap: .5rem; gap: .5rem;
grid-template-areas: grid-template-areas:
"c c" "b b b b"
"t u" "c t u a";
"b b" grid-template-columns: repeat(1fr, 3) .25fr;
"a a";
grid-template-columns: 1fr 1fr;
max-width: 100%; max-width: 100%;
min-width: 100%; min-width: 100%;
width: 100%; } width: 100%; }
@ -36,13 +34,16 @@ form.edit {
display: grid; display: grid;
gap: .5rem; gap: .5rem;
grid-template-areas: grid-template-areas:
"b b" "b b b b b"
"e d"; "c t u e d";
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr 1fr .25fr .25fr;
max-width: 100%; max-width: 100%;
min-width: 100%; min-width: 100%;
width: 100%; } width: 100%; }
form.edit textarea { grid-area: b; } form.edit textarea { grid-area: b; }
form.edit select[name="category"] { grid-area: c; }
form.edit input[name="title"] { grid-area: t; }
form.edit input[name="url"] { grid-area: u; }
form.edit input[name="edit"] { grid-area: e; } form.edit input[name="edit"] { grid-area: e; }
form.edit input[name="delete"] { grid-area: d; } form.edit input[name="delete"] { grid-area: d; }