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.

12 lines
230 B

  1. @mixin badge-variant($bg) {
  2. color: color-yiq($bg);
  3. background-color: $bg;
  4. &[href] {
  5. @include hover-focus {
  6. color: color-yiq($bg);
  7. text-decoration: none;
  8. background-color: darken($bg, 10%);
  9. }
  10. }
  11. }