Fix account card shrink + overview scrollbar (#1643)

* don't shrink account card

* fix perma-scroll on overview

* Update SpacedriveAccount.tsx
This commit is contained in:
Brendan Allan
2023-10-22 01:26:24 +08:00
committed by GitHub
parent 83538f22a1
commit c64eabfac8
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ export const Component = () => {
style={{ paddingTop: TOP_BAR_HEIGHT }}
>
<PageLayoutContext.Provider value={{ ref }}>
<div className="flex h-screen w-full flex-col">
<div className="flex w-full flex-1 flex-col">
<Outlet />
</div>
</PageLayoutContext.Provider>

View File

@@ -4,7 +4,7 @@ import { AuthRequiredOverlay } from '~/components/AuthRequiredOverlay';
export function SpacedriveAccount() {
return (
<Card className="relative overflow-hidden !p-5">
<Card className="relative">
<AuthRequiredOverlay />
<Account />
</Card>