diff options
| -rw-r--r-- | src/components/Header.js | 1 | ||||
| -rw-r--r-- | src/styles/globals.css | 6 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/components/Header.js b/src/components/Header.js index 17cb5ced..ab45eaf6 100644 --- a/src/components/Header.js +++ b/src/components/Header.js @@ -68,6 +68,7 @@ export default function Header({ title }) { <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <title>{title}</title> </Head> + <div className={'menu-wrapper' + (isMenuActive ? ' active ' : '')}> <div className="flex gap-x-2 items-center border-b border-gray_r-6 p-4"> {auth ? ( diff --git a/src/styles/globals.css b/src/styles/globals.css index 3826ee76..5e0c54fa 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -42,7 +42,7 @@ html, body { a { @apply font-medium - text-yellow_r-11 + text-yellow_r-10 ; } } @@ -271,11 +271,9 @@ html, body { py-3 bg-white/90 backdrop-blur-lg - border-b - border-gray-300 sticky top-0 - shadow-sm + shadow z-50 ; } |
