fix header
continuous-integration/drone/push Build is passing Details

This commit is contained in:
hyper-neutrino 2024-04-04 18:08:06 -04:00
parent e66b822f3d
commit 405d37c466
2 changed files with 7 additions and 1 deletions

View File

@ -1,8 +1,13 @@
.headerSpacer {
height: 8rem;
}
.headerWrapper { .headerWrapper {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
position: sticky; position: fixed;
width: 100%;
top: 0; top: 0;
left: 0; left: 0;
z-index: 98; z-index: 98;

View File

@ -16,6 +16,7 @@ export function Header() {
return ( return (
<> <>
<div className={styles.headerSpacer} />
<div <div
className={isShowingMenu ? styles.backgroundTintShow : styles.backgroundTintHidden} className={isShowingMenu ? styles.backgroundTintShow : styles.backgroundTintHidden}
onClick={() => { onClick={() => {