Make corners consistent

This commit is contained in:
Nicolas Mowen 2024-03-27 16:20:14 -06:00
parent 023931022e
commit 196a810d65
3 changed files with 3 additions and 3 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"> <DrawerContent className="max-h-[75dvh] overflow-hidden flex flex-col items-center gap-2 mx-1 rounded-t-2xl">
{allCameras.map((cam) => ( {allCameras.map((cam) => (
<div <div
key={cam} key={cam}

View File

@ -273,7 +273,7 @@ export default function MobileReviewSettingsDrawer({
<FaCog className="text-muted-foreground" /> <FaCog className="text-muted-foreground" />
</Button> </Button>
</DrawerTrigger> </DrawerTrigger>
<DrawerContent className="max-h-[75dvh] overflow-hidden flex flex-col items-center gap-2 px-4 pb-4 mx-4 rounded-2xl"> <DrawerContent className="max-h-[75dvh] overflow-hidden flex flex-col items-center gap-2 px-4 pb-4 mx-1 rounded-t-2xl">
{content} {content}
</DrawerContent> </DrawerContent>
</Drawer> </Drawer>

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"> <DrawerContent className="max-h-[75dvh] overflow-hidden flex flex-col items-center gap-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={() => {