Adding Custom CSS
/* ----------------------YOUR CUSTOM CSS--------------------- */
// Global Mega Menu Styling
.mm {
//nest items here
}
// Specifically Not Mobile Menu
.mm:not(.brx-open) {
//nest items here
}
// Mega Menu Styling Only At Breakpoint
@media (max-width: $navigation-breakpoint) {
.mm {
//nest items here
}
}
// Mega Menu Styling On Mobile Menu
.mm.brx-open {
//nest items here
}
/* -----------------------END OF YOUR CUSTOM CSS-------------------- */Last updated