Advertisement
Guest User

skopac - navbar language dropdown - scss

a guest
Aug 15th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.32 KB | None | 0 0
  1. .dropdown {
  2.     margin-right: 30px;
  3.     border: none;
  4.  
  5.     button {
  6.         border: none;
  7.         font-size: 12px;
  8.     }
  9. }
  10.  
  11. .dropdown:hover .dropdown-menu {
  12.     display: block;
  13.   }
  14.  
  15. .dropdown-menu {
  16.     min-width: 70px;
  17.     box-shadow: none;
  18.     margin-top: 0px;
  19.  
  20.     li {
  21.         font-size: 12px;
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement