Skip to content

Commit

Permalink
Nav and footer colour changed and footer position fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
uo288574 committed Apr 1, 2024
1 parent 478e7d2 commit d3a45c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/src/components/footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AppBar, Toolbar, Typography } from '@mui/material';

export const Footer = () => {
return (
<AppBar component="footer" position="static" sx={{ backgroundColor: "primary", color: "white", bottom: 0, left: 0, width: '100%', zIndex: 1000 }}>
<AppBar component="footer" position="static" sx={{ backgroundColor: "secondary", color: "white", position: 'fixed', bottom: 0, left: 0, width: '100%', zIndex: 1000 }}>
<Toolbar>
<Typography sx={{ margin: 'auto' }}>
© WIQ ES06C
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/components/nav/Nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const Nav = () => {
*/

return (
<AppBar position="static">
<AppBar position="static" sx={{ backgroundColor: "secondary", color: "white"}}>
<Toolbar>
<Link to='/home' >
<IconButton size="large" color="inherit" >
Expand Down

0 comments on commit d3a45c5

Please sign in to comment.