feat: 💨

This commit is contained in:
codytseng
2025-10-19 18:50:35 +08:00
parent 936b15e5c2
commit 80a2f38272
2 changed files with 2 additions and 2 deletions

View File

@@ -365,7 +365,7 @@ export function PageManager({ maxStackSize = 5 }: { maxStackSize?: number }) {
<div className="sticky top-0 w-full flex justify-end self-start h-[var(--vh)]"> <div className="sticky top-0 w-full flex justify-end self-start h-[var(--vh)]">
<Sidebar /> <Sidebar />
</div> </div>
<div className="w-[40vw] min-w-96 max-w-2xl bg-background border-x shrink-0"> <div className="w-[45vw] min-w-96 max-w-4xl bg-background border-x shrink-0">
{!!secondaryStack.length && {!!secondaryStack.length &&
secondaryStack.map((item, index) => ( secondaryStack.map((item, index) => (
<div <div

View File

@@ -14,7 +14,7 @@ export default function SettingsButton({ collapse }: { collapse: boolean }) {
title="Settings" title="Settings"
onClick={() => (enableSingleColumnLayout ? navigate('settings') : push(toSettings()))} onClick={() => (enableSingleColumnLayout ? navigate('settings') : push(toSettings()))}
collapse={collapse} collapse={collapse}
active={enableSingleColumnLayout ? current === 'settings' : false} active={current === 'settings'}
> >
<Settings /> <Settings />
</SidebarItem> </SidebarItem>