feat(bots): render bot-shell command cards as a fixed 2-column grid with equal-height rows

This commit is contained in:
v.lagerev 2026-05-06 16:19:41 +03:00
parent 34fe869e95
commit 21fe3039c4
3 changed files with 6 additions and 3 deletions

View file

@ -436,7 +436,8 @@ body {
.command-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-auto-rows: 1fr;
gap: 10px;
}

View file

@ -500,7 +500,8 @@ body {
.command-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-auto-rows: 1fr;
gap: 10px;
}

View file

@ -519,7 +519,8 @@ body {
.command-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-auto-rows: 1fr;
gap: 10px;
}