feat(bots): render bot-shell command cards as a fixed 2-column grid with equal-height rows
This commit is contained in:
parent
e8865cec5f
commit
7af69574f4
3 changed files with 6 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue