From 4c6a4d619f6f3b7fd8d7d289dc13f18734e5f9d4 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Fri, 5 Dec 2025 19:43:41 +0000 Subject: [PATCH] style: tweak bottom drawer height aaagain --- src/containers/Entry.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/containers/Entry.tsx b/src/containers/Entry.tsx index 954569d..457b702 100644 --- a/src/containers/Entry.tsx +++ b/src/containers/Entry.tsx @@ -6,8 +6,8 @@ import { useIsMobile } from "@/hooks/use-mobile" export default function Entry({ entryTitle, entryBody, history, metadata, isLoading }) { const isMobile = useIsMobile() - const topPanelSize = isMobile ? 90 : 75 - const bottomPanelSize = isMobile ? 10 : 25 + const topPanelSize = isMobile ? 80 : 75 + const bottomPanelSize = isMobile ? 20 : 25 const handleSize = isMobile ? "5px" : "1px" return (