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 (
<Overlay id={id}>
<OverlayRouter id={id}>
<OverlayPage id={id} path="/" width={343} height={431}>
<OverlayPage id={id} path="/" width={343} height={470}>
<SettingsMenu id={id} />
</OverlayPage>
<OverlayPage id={id} path="/quality" width={343} height={400}>
<OverlayPage id={id} path="/quality" width={343} height={470}>
<Menu.Card>
<QualityView id={id} />
</Menu.Card>

View file

@ -1,7 +1,7 @@
export function Card(props: { children: React.ReactNode }) {
return (
<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}
</div>
</div>