mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-21 02:52:28 +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 (
|
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>
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue