Merge pull request 'fix/layout' (#16) from fix/layout into main
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
Reviewed-on: #16
This commit is contained in:
commit
cfb509fcab
Binary file not shown.
|
|
@ -71,7 +71,7 @@ const Header: React.FC = () => {
|
|||
</Box>
|
||||
|
||||
{/* Mobile Drawer Menu */}
|
||||
<Drawer anchor="right" open={mobileOpen} onClose={toggleMobileMenu}>
|
||||
<Drawer anchor="right" open={mobileOpen} onClose={toggleMobileMenu} sx={{zIndex:111111}}>
|
||||
<Box sx={{ width: 250 }} role="presentation" onClick={toggleMobileMenu} onKeyDown={toggleMobileMenu}>
|
||||
<List>
|
||||
<ListItem disablePadding>
|
||||
|
|
@ -81,12 +81,22 @@ const Header: React.FC = () => {
|
|||
</ListItem>
|
||||
<ListItem disablePadding>
|
||||
<ListItemButton>
|
||||
<ListItemText primary="Services" />
|
||||
<ListItemText primary="What we do" />
|
||||
</ListItemButton>
|
||||
</ListItem>
|
||||
<ListItem disablePadding>
|
||||
<ListItemButton>
|
||||
<ListItemText primary="Our philosphy" />
|
||||
</ListItemButton>
|
||||
</ListItem>
|
||||
<ListItem disablePadding>
|
||||
<ListItemButton>
|
||||
<ListItemText primary="Our team" />
|
||||
</ListItemButton>
|
||||
</ListItem>
|
||||
<ListItem >
|
||||
<ListItemButton sx={{ backgroundColor: "blue", color: "white", "&:hover": { backgroundColor: "darkblue" } }}>
|
||||
<ListItemText primary="Download" />
|
||||
<ListItemText primary="Contact Us" />
|
||||
</ListItemButton>
|
||||
</ListItem>
|
||||
</List>
|
||||
|
|
|
|||
Loading…
Reference in New Issue