29 lines
469 B
SCSS
29 lines
469 B
SCSS
.taglist{
|
|
flex-wrap: wrap;
|
|
|
|
.tag {
|
|
background: $tag-background;
|
|
color: $tag-color;
|
|
border-radius: $tag-border-radius;
|
|
border: 1px solid #aaa;
|
|
font-size: $tag-font-size;
|
|
display: inline-block;
|
|
margin: .2rem $tag-spacing;
|
|
|
|
a {
|
|
display: block;
|
|
color: $tag-color;
|
|
white-space: nowrap;
|
|
padding: $tag-padding;
|
|
|
|
&:hover {
|
|
color: $primary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.taglist.centering {
|
|
justify-content: center;
|
|
.tag { text-transform: capitalize }
|
|
}
|