14 lines
235 B
SCSS
14 lines
235 B
SCSS
|
.chips {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
|
||
|
.chip {
|
||
|
margin-right: .5em;
|
||
|
padding: 0.5em 0.9em;
|
||
|
background: $primary;
|
||
|
color: white;
|
||
|
font-size: .9em;
|
||
|
border-radius: 10rem;
|
||
|
}
|
||
|
}
|