Blame view

frontend/themes/markup/src/scss/bootstrap/mixins/_labels.scss 203 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
  // Labels
  
  @mixin label-variant($color) {
    background-color: $color;
    font-size: 16px;
    color: #5188b2;
    &[href] {
      &:hover,
      &:focus {
        background-color: darken($color, 10%);
      }
    }
  }