Merge pull request #18 from valueonag/feat/code-editor

vector fixes
This commit is contained in:
Patrick Motsch 2026-03-18 00:34:43 +01:00 committed by GitHub
commit 34a8bdeafb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -93,6 +93,7 @@
min-width: 0;
min-height: 0;
position: relative;
--mobile-topbar-height: 0px;
/* Let child components handle their own scrolling for sticky headers */
overflow: hidden;
background: var(--bg-primary, #ffffff);
@ -229,6 +230,10 @@
border-bottom: 1px solid var(--border-color, #e0e0e0);
}
.content {
--mobile-topbar-height: 57px;
}
.mobileBackdrop {
display: block;
position: fixed;

View file

@ -35,7 +35,7 @@ export const WorkspaceKeepAlive: React.FC<WorkspaceKeepAliveProps> = ({ isVisibl
display: isVisible ? 'flex' : 'none',
flexDirection: 'column',
position: 'absolute',
top: 0,
top: 'var(--mobile-topbar-height, 0px)',
left: 0,
right: 0,
bottom: 0,