fix: Settings panel overflows screen on certain sizes #90

This commit is contained in:
SethBurkart123
2024-02-12 18:03:23 +11:00
parent 6906245e4c
commit 0a850e5b27
4 changed files with 56 additions and 2 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ const SettingsPage = ({ standalone }: SettingsPage) => {
];
return (
<div className={`flex flex-col w-[384px] shadow-2xl gap-2 bg-white ${ standalone ? '' : 'rounded-xl' } h-[600px] overflow-clip dark:bg-zinc-800 dark:text-white`}>
<div className={`flex flex-col w-[384px] shadow-2xl gap-2 bg-white ${ standalone ? '' : 'rounded-xl' } h-[100vh] overflow-clip dark:bg-zinc-800 dark:text-white`}>
<div className="grid border-b border-b-zinc-200/40 place-items-center">
<img src={logo} className="w-4/5 dark:hidden" />
<img src={logoDark} className="hidden w-4/5 dark:block" />