Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_label.scss « mixins « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fad20c112a58b4dd0ff59917dfacccc37d95ebfe (plain)
1
2
3
4
5
6
7
8
9
10
11
// Label base style
@mixin label-base() {
  border-radius: $border-radius;
  line-height: 1.2;
  padding: .1rem .15rem;
}

@mixin label-variant($color: $light-color, $bg-color: $primary-color) {
  background: $bg-color;
  color: $color;
}