fix(layout): constrain clinical layout viewport

This commit is contained in:
yelan
2026-08-27 16:49:39 +08:00
parent 74df2ed741
commit 4412a85adc

View File

@@ -22,7 +22,9 @@ import Menu from '@/components/layout/Menu.vue'
.clinical-layout { .clinical-layout {
display: flex; display: flex;
width: 100%; width: 100%;
min-height: 100vh; height: 100vh;
min-height: 0;
overflow: hidden;
background: var(--bg); background: var(--bg);
} }
@@ -31,6 +33,8 @@ import Menu from '@/components/layout/Menu.vue'
flex: 1; flex: 1;
flex-direction: column; flex-direction: column;
min-width: 0; min-width: 0;
min-height: 100vh; min-height: 0;
height: 100%;
overflow: hidden;
} }
</style> </style>