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: 1763567c0626eea6f68f46dc220967f48a920aac (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
25
26
27
28
29
30
// Chips
.chip {
  align-items: center;
  background: $bg-color-dark;
  border-radius: 5rem;
  color: $gray-color-dark;
  display: inline-flex;
  font-size: 90%;
  height: $unit-6;
  line-height: $unit-4;
  margin: $unit-h;
  max-width: 100%;
  padding: $unit-1 $unit-2;
  text-decoration: none;
  vertical-align: middle;

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

  .avatar {
    margin-left: -$unit-2;
    margin-right: $unit-1;
  }

  .btn-clear {
    transform: scale(.75);
  }
}