Make my dropdown menu black like my navbar

I like the black-on-white asthetic, so let's make the dropdown menu do
that. I pulled this code from
https://github.com/twbs/bootstrap/issues/9588

It works great now that I'm processing my sass
This commit is contained in:
Eli Ribble 2016-06-09 09:57:04 -06:00
parent 04c796c18a
commit 173a88a3b3
2 changed files with 17 additions and 2 deletions

View file

@ -7,3 +7,18 @@
position: relative;
left: 20px;
}
.inverse-dropdown{
background-color: #222;
border-color: #080808;
&>li>a {
color: #999;
&:hover {
color: #fff;
background-color: #000;
}
}
&>.divider {
background-color: #000;
}
}