We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
機能追加理由・詳細
解決策の提案(任意) Sidebarのコンテナのposition: stickyをposition: fixedへ
position: sticky
position: fixed
ContentsコンテナがWizUIから提供されてないので提供する そのContentsコンテナはmt=60px (ヘッダ幅), ml=181px(サイド幅 + ボーダー1px)を持った<main>か<div>でいいと思う
mt=60px (ヘッダ幅), ml=181px(サイド幅 + ボーダー1px)
<main>
<div>
その他考慮事項(任意)
現状
<WizStack reverse height="100vh"> <Gradient /> <div style={{ display: 'flex', width: '100%', zIndex: '0' }}> <Navigation isNavigationOpen={isNavigationOpen} /> <WizBox width="100%"> <div style={{ paddingTop: '61px' }}> <Outlet /> </div> </WizBox> </div> <Header onToggle={handleToggleHeader} /> </WizStack>
改善提案
<WizStack reverse height="100vh"> <Gradient /> <Navigation isNavigationOpen={isNavigationOpen} /> <WizMainContainer> <Outlet /> </WizMainContainer> <Header onToggle={handleToggleHeader} /> </WizStack>
The text was updated successfully, but these errors were encountered:
[#1004] fix: sticky をfixed に変更
12d215d
[#1004] NavigationContent 追加
e4f4898
19f0489
[#1004] React 対応
d97ac74
okakyo
Successfully merging a pull request may close this issue.
機能追加理由・詳細
2023-08-17.15.16.45.mov
2023-08-17.15.17.38.mov
解決策の提案(任意)
Sidebarのコンテナの
position: sticky
をposition: fixed
へContentsコンテナがWizUIから提供されてないので提供する
そのContentsコンテナは
mt=60px (ヘッダ幅), ml=181px(サイド幅 + ボーダー1px)
を持った<main>
か<div>
でいいと思うその他考慮事項(任意)
現状
改善提案
The text was updated successfully, but these errors were encountered: