Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
261 B

  1. // Horizontal dividers
  2. //
  3. // Dividers (basically an hr) within dropdowns and nav lists
  4. @mixin nav-divider($color: $nav-divider-color, $margin-y: $nav-divider-margin-y) {
  5. height: 0;
  6. margin: $margin-y 0;
  7. overflow: hidden;
  8. border-top: 1px solid $color;
  9. }