Fix: make vaultSection and settingsContent span full width of parent grid
This commit is contained in:
parent
ae22b1a906
commit
2fbefde281
1 changed files with 3 additions and 0 deletions
|
|
@ -963,6 +963,9 @@ async function openUncloseaiEmbeddedModalNew() {
|
|||
rightColumn.style.cssText = 'display: grid; gap: 8px; align-content: start; width: 100%;';
|
||||
|
||||
// Add vault section first, then settings content
|
||||
// Both must span full width since parent settingsPanel uses 2-column grid (from CSS)
|
||||
vaultSection.style.gridColumn = '1 / -1';
|
||||
settingsContent.style.gridColumn = '1 / -1';
|
||||
settingsPanel.appendChild(vaultSection);
|
||||
settingsPanel.appendChild(settingsContent);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue