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 (