Skip to content

Commit

Permalink
fix: Fullscreen Settings entries finally animate
Browse files Browse the repository at this point in the history
  • Loading branch information
beebls committed Oct 15, 2023
1 parent 455e6fd commit 82bb7b2
Showing 1 changed file with 34 additions and 5 deletions.
39 changes: 34 additions & 5 deletions src/pages/settings/SettingsPageRouter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,40 @@ export function SettingsPageRouter() {
</style>
<SidebarNavigation
pages={[
{ title: "Themes", icon: <RiPaintFill />, content: <ThemeSettings /> },
{ title: "Profiles", icon: <BsFolderFill />, content: <PresetSettings /> },
{ title: "Settings", icon: <RiSettings2Fill />, content: <PluginSettings /> },
{ title: "Donate", icon: <AiFillHeart />, content: <DonatePage /> },
{ title: "Credits", icon: <AiFillGithub />, content: <Credits /> },
{
title: "Themes",
icon: <RiPaintFill />,
route: "/cssloader/settings/themes",
content: <ThemeSettings />,
},
{
title: "Profiles",
icon: <BsFolderFill />,
route: "/cssloader/settings/profiles",

content: <PresetSettings />,
},
{
title: "Settings",
icon: <RiSettings2Fill />,
route: "/cssloader/settings/plugin",

content: <PluginSettings />,
},
{
title: "Donate",
icon: <AiFillHeart />,
route: "/cssloader/settings/donate",

content: <DonatePage />,
},
{
title: "Credits",
icon: <AiFillGithub />,
route: "/cssloader/settings/credits",

content: <Credits />,
},
]}
></SidebarNavigation>
</>
Expand Down

0 comments on commit 82bb7b2

Please sign in to comment.