fix split view, again

This commit is contained in:
Jesper Møller Jensen
2024-01-24 17:14:22 +01:00
parent a47c00edac
commit 7e6abfc429
2 changed files with 2 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ export class UmbWorkspaceSplitViewElement extends UmbLitElement {
display: block;
width: 100%;
height: 100%;
min-height: 0;
min-width: 0;
}
:host(:not(:last-child)) {

View File

@@ -67,8 +67,7 @@ export class UmbDocumentWorkspaceSplitViewElement extends UmbLitElement {
}
#splitViews {
display: grid;
grid-template-columns: 50% 50%;
display: flex;
width: 100%;
height: calc(100% - var(--umb-footer-layout-height));
}