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

chips.less « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9ebde5659cf7e7ca827f672321b9674efbedfef (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: @border-radius;
  color: @gray-color-dark;
  display: inline-flex;
  height: @unit-7;
  margin: 0 @unit-0 @unit-0 0;
  max-width: 100%;
  padding: @unit-0 @unit-2;
  text-decoration: none;
  vertical-align: middle;

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

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