fix: tabs 高度不足导致 border 样式不能占满父元素 (#9780)

* fix: tabs 高度不足导致 border 样式不能占满父元素

* Revert
This commit is contained in:
Konv Suu 2025-09-02 19:09:11 +08:00 committed by GitHub
parent bdf6748956
commit 94374e7de2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -155,9 +155,12 @@ const Container = styled.div`
flex-direction: column;
max-width: var(--assistants-width);
min-width: var(--assistants-width);
height: calc(100vh - var(--navbar-height));
&.right {
height: calc(100vh - var(--navbar-height));
}
[navbar-position='left'] & {
background-color: var(--color-background);
}