fix: restructure .window-body to single column so import-actions spans full width
The import-actions div was a sibling of import-split in a 2-column grid, causing it to only occupy the right 60% column. Changed .window-body to a 2-row single-column grid so import-actions sits below import-split spanning the full width. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c6e1d20c68
commit
55edb5522a
@ -233,7 +233,8 @@
|
|||||||
}
|
}
|
||||||
.window-body {
|
.window-body {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 22rem minmax(0, 1fr);
|
grid-template-columns: 1fr;
|
||||||
|
grid-template-rows: 1fr auto;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
}
|
}
|
||||||
.import-split { display: grid; grid-template-columns: 40% 60%; height: 100%; gap: 1px; background: var(--line); }
|
.import-split { display: grid; grid-template-columns: 40% 60%; height: 100%; gap: 1px; background: var(--line); }
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user