You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
470 B
27 lines
470 B
// 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;
|
|
}
|
|
}
|