trying out responsive hero on mac

This commit is contained in:
Jason Jordan
2025-07-10 11:52:38 -04:00
parent 06f29c816a
commit 76a1a828dc
7 changed files with 106 additions and 116 deletions
+2 -2
View File
@@ -41,7 +41,7 @@ export default function Dropdown(props: Props) {
className="hover:text-britton-light font-semibold text-lg"
onClick={toggle}
>{item.title}</Button>
<div className={`absolute top-8 z-30 w-[150px] flex flex-col bg-stone-300 text-sm rounded-md ${transClass}`}>
<div className={`absolute top-8 z-11 w-[150px] flex flex-col bg-stone-300 text-sm rounded-md ${transClass}`}>
{
menuItems.map(item =>
<>
@@ -73,7 +73,7 @@ export default function Dropdown(props: Props) {
isOpen
?
<div
className="fixed top-0 right-0 bottom-0 left-0 z-20 bg-britton-dark/40"
className="fixed top-0 right-0 bottom-0 left-0 z-11 bg-britton-dark/40"
onClick={toggle}
></div>
: