Files
pillar/src/styles/components/_dropdown.sass

14 lines
329 B
Sass
Raw Normal View History

2018-08-28 15:53:47 +02:00
// Global, we want all menus to look like this.
.dropdown-menu
box-shadow: $dropdown-box-shadow
top: 95% // So there is less gap between the dropdown and the item.
2018-08-28 15:53:47 +02:00
> li
> a
padding: $dropdown-item-padding-y
// Open dropdown on mouse hover dropdowns in the navbar.
nav .dropdown:hover
ul.dropdown-menu
display: block