Skip to content

Commit

Permalink
Fix drawer width
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse committed Dec 4, 2021
1 parent 3743258 commit c16bed0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/roadmap/content-drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function ContentDrawer(props: ContentDrawerProps) {
}

return (
<Box zIndex={999} pos="relative">
<Box zIndex={99999} pos="relative">
<Box
onClick={onClose}
pos="fixed"
Expand All @@ -31,7 +31,7 @@ export function ContentDrawer(props: ContentDrawerProps) {
<Box
p="0px 30px 30px"
position="fixed"
w={['100%', '70%', '40%']}
w={['100%', '70%', '50%']}
bg="white"
top={0}
right={0}
Expand Down

0 comments on commit c16bed0

Please sign in to comment.