diff --git a/web/assets/css/mindflow_admin.css b/web/assets/css/mindflow_admin.css index 788db10..dab803f 100644 --- a/web/assets/css/mindflow_admin.css +++ b/web/assets/css/mindflow_admin.css @@ -17,11 +17,9 @@ form#add { display: grid; gap: .5rem; grid-template-areas: - "c c" - "t u" - "b b" - "a a"; - grid-template-columns: 1fr 1fr; + "b b b b" + "c t u a"; + grid-template-columns: repeat(1fr, 3) .25fr; max-width: 100%; min-width: 100%; width: 100%; } @@ -36,13 +34,16 @@ form.edit { display: grid; gap: .5rem; grid-template-areas: - "b b" - "e d"; - grid-template-columns: 1fr 1fr; + "b b b b b" + "c t u e d"; + grid-template-columns: 1fr 1fr 1fr .25fr .25fr; max-width: 100%; min-width: 100%; width: 100%; } 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="delete"] { grid-area: d; } \ No newline at end of file