fix: layout sider component style

This commit is contained in:
luoxiao 2023-10-11 13:37:39 +08:00
parent 91b83c9025
commit 63007dc7c4
3 changed files with 2 additions and 3 deletions

@ -1 +0,0 @@
Subproject commit 5f44d23c39fef044c21783a9944070aed5305952

View file

@ -57,7 +57,7 @@ pub fn ComponentsPage() -> impl IntoView {
</MenuGroup> </MenuGroup>
</Menu> </Menu>
</LayoutSider> </LayoutSider>
<Layout style="padding: 8px 12px 28px; overflow-y: scroll;"> <Layout style="padding: 8px 12px 28px; overflow-y: auto;">
<Outlet/> <Outlet/>
</Layout> </Layout>
</Layout> </Layout>

View file

@ -1,5 +1,5 @@
.melt-layout-sider { .melt-layout-sider {
position: relative; position: relative;
min-width: 208px; min-width: 208px;
overflow: scroll; overflow: auto;
} }