mirror of
https://github.com/p-stream/p-stream.git
synced 2026-01-11 20:10:32 +00:00
minor atoms settings adjustments
This commit is contained in:
parent
b861cd3790
commit
5e0623a6e7
2 changed files with 3 additions and 3 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue