bottom padding on bottom sheets

This commit is contained in:
Nicolas Mowen 2024-03-27 16:58:00 -06:00
parent f0eebf05da
commit 777f04a51a
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ export default function MobileCameraDrawer({
<FaVideo className="text-muted-foreground" /> <FaVideo className="text-muted-foreground" />
</Button> </Button>
</DrawerTrigger> </DrawerTrigger>
<DrawerContent className="max-h-[75dvh] overflow-hidden flex flex-col items-center gap-2 px-4 mx-1 rounded-t-2xl"> <DrawerContent className="max-h-[75dvh] overflow-hidden flex flex-col items-center gap-2 px-4 pb-2 mx-1 rounded-t-2xl">
{allCameras.map((cam) => ( {allCameras.map((cam) => (
<div <div
key={cam} key={cam}

View File

@ -26,7 +26,7 @@ export default function MobileTimelineDrawer({
<FaFlag className="text-muted-foreground" /> <FaFlag className="text-muted-foreground" />
</Button> </Button>
</DrawerTrigger> </DrawerTrigger>
<DrawerContent className="max-h-[75dvh] overflow-hidden flex flex-col items-center gap-2 px-4 mx-1 rounded-t-2xl"> <DrawerContent className="max-h-[75dvh] overflow-hidden flex flex-col items-center gap-2 px-4 pb-2 mx-1 rounded-t-2xl">
<div <div
className={`w-full mx-4 py-2 text-center capitalize ${selected == "timeline" ? "bg-secondary rounded-lg" : ""}`} className={`w-full mx-4 py-2 text-center capitalize ${selected == "timeline" ? "bg-secondary rounded-lg" : ""}`}
onClick={() => { onClick={() => {