From 6a5598e81f3156f18e56850aee5fe443036238c4 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Wed, 3 Dec 2025 16:52:34 +0000 Subject: [PATCH] style: tweak bottom drawer height again --- 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 fe10f3a..9bdc886 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 ? 95 : 75 - const bottomPanelSize = isMobile ? 5 : 25 + const topPanelSize = isMobile ? 90 : 75 + const bottomPanelSize = isMobile ? 10 : 25 const handleSize = isMobile ? "5px" : "1px" console.log(isMobile) return (