minor atoms settings adjustments

This commit is contained in:
Pas 2025-03-22 18:13:16 -06:00
parent b861cd3790
commit 5e0623a6e7
2 changed files with 3 additions and 3 deletions

View file

@ -41,10 +41,10 @@ function SettingsOverlay({ id }: { id: string }) {
return ( return (
<Overlay id={id}> <Overlay id={id}>
<OverlayRouter id={id}> <OverlayRouter id={id}>
<OverlayPage id={id} path="/" width={343} height={431}> <OverlayPage id={id} path="/" width={343} height={470}>
<SettingsMenu id={id} /> <SettingsMenu id={id} />
</OverlayPage> </OverlayPage>
<OverlayPage id={id} path="/quality" width={343} height={400}> <OverlayPage id={id} path="/quality" width={343} height={470}>
<Menu.Card> <Menu.Card>
<QualityView id={id} /> <QualityView id={id} />
</Menu.Card> </Menu.Card>

View file

@ -1,7 +1,7 @@
export function Card(props: { children: React.ReactNode }) { export function Card(props: { children: React.ReactNode }) {
return ( return (
<div className="h-full grid grid-rows-[1fr]"> <div className="h-full grid grid-rows-[1fr]">
<div className="px-6 h-full flex flex-col justify-start overflow-y-auto overflow-x-hidden"> <div className="px-6 h-full flex flex-col justify-start overflow-y-auto overflow-x-hidden pb-4">
{props.children} {props.children}
</div> </div>
</div> </div>