Skip to content

Commit

Permalink
Merge pull request #152 from simplitrac/more-hamburger-styling
Browse files Browse the repository at this point in the history
forgot to add these stylings
  • Loading branch information
dave-b-b authored Sep 12, 2024
2 parents 3a8be5c + ab33a92 commit 493fc78
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
23 changes: 13 additions & 10 deletions client/src/components/HamburgerMenu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,21 @@ const HamburgerMenu = () => {
top="20px"
left="20px"
zIndex="1000"
colorScheme="teal"
// colorScheme="teal"
/>

<Drawer placement="left" onClose={() => setShowHamburger(false)} isOpen={isOpen}>
<DrawerOverlay>
<DrawerContent>
<DrawerCloseButton color='#bd1f36'/>
<DrawerCloseButton
color='#bd1f36'
background="white"/>
<DrawerHeader
textAlign="center"
color="yinmnBlue.500"
fontSize="2xl"
fontWeight="bold"
bg="back"
>Menu</DrawerHeader>
<DrawerBody>
<VStack align="center" spacing={4}>
Expand Down Expand Up @@ -120,21 +123,21 @@ const HamburgerMenu = () => {
{showCategories ? "Hide Categories" : "Show Categories"}
</Button>
<p></p>
<SignOut
variant="outline"
w="100%"
color="white"
backgroundColor="#415a77"
/>
</VStack>
<SignOut
variant="outline"
w="100%"
color="white"
background="#415a77"
/>
</DrawerBody>
<DrawerFooter>
<Button
<Button
variant="ghost"
color="white"
w="100%"
onClick={handleDeleteAccount}
backgroundColor="#bd1f36"
color='white'
>
Delete Account
</Button>
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/HamburgerMenuEdit.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const HamburgerMenuEdit = () => {
top="20px"
left="20px"
zIndex="1000"
colorScheme="teal"
// colorScheme="teal"
/>

<Drawer placement="left" onClose={() => setShowHamburger(false)} isOpen={isOpen}>
Expand Down

0 comments on commit 493fc78

Please sign in to comment.