fix: app-scrollbar 设置高度 100% 不生效 (#128)

This commit is contained in:
ClariS
2023-09-04 17:26:42 +08:00
committed by GitHub
parent f1918b4bb8
commit 41c7ac1c9a

View File

@@ -31,10 +31,11 @@ const tagsViewStore = useTagsViewStore()
.app-main { .app-main {
width: 100%; width: 100%;
background-color: var(--v3-body-bg-color); background-color: var(--v3-body-bg-color);
display: flex;
} }
.app-scrollbar { .app-scrollbar {
height: 100%; flex-grow: 1;
overflow: auto; overflow: auto;
@include scrollbar; @include scrollbar;
} }