feat(KB-660): fix mobile responsive styles for Git Manager modal

- Add flex layout and overflow hidden to .gm-modal container
- Fix mobile responsive styles for Git Manager modal
- Clean up unused changeset files and test stubs
This commit is contained in:
gsxdsm
2026-04-01 21:58:28 -07:00
parent 98625eeab6
commit 52096baa48

View File

@@ -11183,11 +11183,14 @@ html .column.drag-over * {
GIT MANAGER MODAL
══════════════════════════════════════════════════════════════════ */
/* Modal size override */
/* Modal size override - flex layout for sidebar + content */
.gm-modal {
width: 900px;
max-width: 95vw;
max-height: 85vh;
display: flex;
flex-direction: column;
overflow: hidden;
}
/* Main layout: sidebar + content */
@@ -12285,6 +12288,7 @@ html .column.drag-over * {
.gm-modal {
width: 100%;
max-width: 100%;
height: 100vh;
max-height: 100vh;
border-radius: 0;
}
@@ -12322,7 +12326,7 @@ html .column.drag-over * {
}
.gm-content {
min-height: 300px;
min-height: 200px;
padding: var(--space-md);
}