style: tweak bottom drawer height again

This commit is contained in:
Thomas Bishop 2025-12-03 16:52:34 +00:00
parent 98e7611670
commit 6a5598e81f

View file

@ -6,8 +6,8 @@ import { useIsMobile } from "@/hooks/use-mobile"
export default function Entry({ entryTitle, entryBody, history, metadata, isLoading }) { export default function Entry({ entryTitle, entryBody, history, metadata, isLoading }) {
const isMobile = useIsMobile() const isMobile = useIsMobile()
const topPanelSize = isMobile ? 95 : 75 const topPanelSize = isMobile ? 90 : 75
const bottomPanelSize = isMobile ? 5 : 25 const bottomPanelSize = isMobile ? 10 : 25
const handleSize = isMobile ? "5px" : "1px" const handleSize = isMobile ? "5px" : "1px"
console.log(isMobile) console.log(isMobile)
return ( return (