- Beautiful dropdown items.

This commit is contained in:
Leo
2021-10-21 20:39:13 -05:00
parent 4ae2338942
commit 42ed785da5
2 changed files with 10 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
// Place a nice stripe to the left of hovered dropdown menu items
.dropdown-menu .dropdown-item {
border-left: 4px solid transparent;
transition: background-color .1s linear, border .1s linear;
&:hover {
border-left-color: $yellow; // $info;
}
}

View File

@@ -2,6 +2,7 @@
@import 'bootstrap/buttons';
@import 'bootstrap/nav';
@import 'bootstrap/navbar';
@import 'bootstrap/dropdown';
@import 'bootstrap/code';
@import 'bootstrap/form-control';