Skip to content

Commit

Permalink
Fix menu bug for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
dylancashman committed Aug 6, 2024
1 parent 10287e3 commit 1dd4330
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions src/styles/navigation.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@
@apply bg-accent border-0;
@apply relative;
}
a.nav-text-link {
color: white;
text-decoration: inherit;
}
}

a.nav-text-link {
color: white;
text-decoration: inherit;
}

/* Menu */

Expand Down Expand Up @@ -93,23 +93,16 @@ a.nav-text-link {
/* position: relative; */
}

/* Force this rule to have greater importance than the inserted bootstrap conflicts
-- Dylan */
.dropdown {
left: 0;
position: absolute;
position: absolute !important;
top: var(--navigation-height);
width: 100%;
}
}

/* Force this rule to have greater importance than the inserted bootstrap conflicts
-- Dylan */
.dropdown {
left: 0;
position: absolute !important;
top: var(--navigation-height);
width: 100%;
}


/* Menu Items */

Expand Down

0 comments on commit 1dd4330

Please sign in to comment.