1
4
Fork 1
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
481 B
SCSS

.taglist .tag {
margin-right: $tag-margin-right;
background: $tag-background;
color: $tag-color;
border-radius: $tag-border-radius;
border: 1px solid #aaa;
font-size: $tag-font-size;
display: inline-block;
a {
display: block;
color: $tag-color;
white-space: nowrap;
padding: $tag-padding;
&:hover {
color: $primary;
}
}
}
.taglist.centering {
justify-content: center;
flex-wrap: wrap;
.tag {
margin-bottom: .5rem;
text-transform: capitalize;
}
}