diff options
author | Michael Hunteman <michael@huntm.net> | 2024-07-10 17:33:13 -0700 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2024-07-10 17:33:13 -0700 |
commit | a67743780f98ea9163cd2dddd20ef34be84bc68a (patch) | |
tree | 890595f3eee7fadf6f8758306ecc91cd6bd5ecd5 /client | |
parent | a6b1fa31e890b51b043c4211b14cd4be29ed6fba (diff) |
Make title Madison and Michael
Diffstat (limited to 'client')
-rw-r--r-- | client/src/ThemeContextProvider.tsx | 4 | ||||
-rw-r--r-- | client/src/components/Mobile.tsx | 10 | ||||
-rw-r--r-- | client/src/components/NavBar.tsx | 2 |
3 files changed, 6 insertions, 10 deletions
diff --git a/client/src/ThemeContextProvider.tsx b/client/src/ThemeContextProvider.tsx index abd9d29..b5972d7 100644 --- a/client/src/ThemeContextProvider.tsx +++ b/client/src/ThemeContextProvider.tsx @@ -34,12 +34,12 @@ function ThemeContextProvider({ children }: ThemeProviderProps) { ...(mode === 'light' ? { primary: { - main: '#FF8A65', + main: '#FFAB91', }, } : { primary: { - main: '#FF7043', + main: '#FF8A65', }, }), }, diff --git a/client/src/components/Mobile.tsx b/client/src/components/Mobile.tsx index 7d790e1..38aa20b 100644 --- a/client/src/components/Mobile.tsx +++ b/client/src/components/Mobile.tsx @@ -23,15 +23,11 @@ function Mobile() { }; return ( - <> + <div style={{ marginLeft: 'auto' }}> <IconButton color="inherit" onClick={toggleColorMode}> {theme.palette.mode === 'dark' ? <DarkModeIcon /> : <LightModeIcon />} </IconButton> - <IconButton - color="inherit" - sx={{ ml: 'auto' }} - onClick={handleOpenNavMenu} - > + <IconButton color="inherit" onClick={handleOpenNavMenu}> <MenuIcon /> </IconButton> <Menu anchorEl={anchorEl} open={!!anchorEl} onClose={handleCloseNavMenu}> @@ -48,7 +44,7 @@ function Mobile() { </MenuItem> ))} </Menu> - </> + </div> ); } diff --git a/client/src/components/NavBar.tsx b/client/src/components/NavBar.tsx index 52e8e6c..a8e0a14 100644 --- a/client/src/components/NavBar.tsx +++ b/client/src/components/NavBar.tsx @@ -18,7 +18,7 @@ function NavBar() { color="inherit" sx={{ textDecoration: 'none' }} > - Madison and Michael's Wedding + Madison and Michael </Typography> {isMobile ? <Mobile /> : <Desktop />} </Toolbar> |