diff --git a/app/components/header.tsx b/app/components/header.tsx index 5f8ad6c99..62608047d 100644 --- a/app/components/header.tsx +++ b/app/components/header.tsx @@ -68,35 +68,40 @@ export const HeaderBorder = () => { ); }; +const useHeaderStyles = makeStyles((theme) => ({ + wrapper: { + position: "fixed", + top: 0, + left: 0, + width: "100%", + overflowY: "hidden", + zIndex: 13, + backgroundColor: theme.palette.grey[100], + }, + content: { + minHeight: 92, + maxWidth: 1400, + marginLeft: "auto", + marginRight: "auto", + color: theme.palette.grey[700], + }, +})); + export const Header = ({ pageType = "app", }: { pageType?: "content" | "app"; }) => { + const classes = useHeaderStyles(); + return ( - +