mirror of
https://github.com/Radiquum/AniX.git
synced 2025-05-03 03:19:41 +05:00
feat(Design): navigation rail redisign
This commit is contained in:
parent
94f11d5dbd
commit
6bd46e8437
2 changed files with 34 additions and 21 deletions
|
@ -56,31 +56,33 @@ export const App = (props) => {
|
|||
|
||||
return (
|
||||
<body>
|
||||
<div>
|
||||
<NavigationRail
|
||||
colorPicker={colorPicker}
|
||||
settingsPopup={settingsPopup}
|
||||
setColorPicker={setColorPicker}
|
||||
setSettingsPopup={setSettingsPopup}
|
||||
/>
|
||||
{colorPicker && (
|
||||
<ColorPicker
|
||||
mode={mode}
|
||||
theme={theme}
|
||||
<div style={{ display: "flex", "flex-direction": "row" }}>
|
||||
<div style={{ "padding-inline-start": "0" }}>
|
||||
<NavigationRail
|
||||
colorPicker={colorPicker}
|
||||
setColorPicker={setColorPicker}
|
||||
/>
|
||||
)}
|
||||
{settingsPopup && (
|
||||
<Settings
|
||||
settingsPopup={settingsPopup}
|
||||
setColorPicker={setColorPicker}
|
||||
setSettingsPopup={setSettingsPopup}
|
||||
/>
|
||||
)}
|
||||
{colorPicker && (
|
||||
<ColorPicker
|
||||
mode={mode}
|
||||
theme={theme}
|
||||
colorPicker={colorPicker}
|
||||
setColorPicker={setColorPicker}
|
||||
/>
|
||||
)}
|
||||
{settingsPopup && (
|
||||
<Settings
|
||||
settingsPopup={settingsPopup}
|
||||
setSettingsPopup={setSettingsPopup}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
<main className="responsive padding" style={{ overflow: "hidden" }}>
|
||||
{props.children}
|
||||
</main>
|
||||
</div>
|
||||
<main className="responsive padding" style={{ overflow: "hidden" }}>
|
||||
{props.children}
|
||||
</main>
|
||||
</body>
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue