mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-11 13:41:53 +00:00
fix(desktop): let settings content use full pane width
Remove the max-w-4xl wrapper from SettingsContent so every settings page can use the available overlay width.
This commit is contained in:
parent
ed4123792c
commit
4d88facfc1
1 changed files with 1 additions and 3 deletions
|
|
@ -11,9 +11,7 @@ import { PAGE_INSET_X } from '../layout-constants'
|
|||
export function SettingsContent({ children }: { children: ReactNode }) {
|
||||
return (
|
||||
<section className="min-h-0 overflow-hidden">
|
||||
<div className={cn('h-full min-h-0 overflow-y-auto pb-20', PAGE_INSET_X)}>
|
||||
<div className="mx-auto w-full max-w-4xl">{children}</div>
|
||||
</div>
|
||||
<div className={cn('h-full min-h-0 overflow-y-auto pb-20', PAGE_INSET_X)}>{children}</div>
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue