Updated menu item style to use active state

Instead of looking for the `.active` class, we'll use `data-state="active"` as our check which aligns with the `MenuItem` scope.

Milestone: minor
This commit is contained in:
Brooke Kuhlmann
2026-07-11 09:27:34 -06:00
parent 3483ff5125
commit e80a6ca540
+1 -1
View File
@@ -160,7 +160,7 @@
text-decoration: none;
transition: border-bottom-color 0.3s ease-in-out;
&:hover, &:active, &.active {
&:hover, &:active, &[data-state="active"] {
border-bottom-color: var(--site-orange);
}
}