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

_chips.scss « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 061047014635bcebd2396d319e0aec2a78605f64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Chips
.chip {
  align-items: center;
  background: $bg-color-dark;
  border-radius: 5rem;
  color: $gray-color-dark;
  display: inline-flex;
  height: $unit-6;
  margin: $unit-h;
  max-width: 100%;
  padding: $unit-h ($unit-2 + $unit-h);
  text-decoration: none;
  vertical-align: middle;

  &.active {
    background: $primary-color;
    color: $light-color;
  }

  .avatar {
    margin-left: -($unit-2 + $unit-h);
    margin-right: $unit-1;
  }
}