-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Labels
Description
This is about Bulma unexpected non configurable feature introduced in v0.7.2 (or possibly v0.7.1)
Description
Upgraded to v0.7.2 because #2109
Now navbar features a non-configurable box-shadow in .navbar-menu
+until($navbar-breakpoint)
...
.navbar-menu
background-color: $navbar-background-color
box-shadow: 0 8px 16px rgba($black, 0.1)
padding: 0.5rem 0
Only way to remove it seems to be
.navbar-menu {
box-shadow: none !important;
}
Feature request
Either make the box shadow configurable using variables or just leave it up to the designer to add it via css.
philippeluickx and mschadev