receptty.org/sass/_tags.scss

29 lines
469 B
SCSS
Raw Normal View History

2022-10-03 09:42:05 +02:00
.taglist{
flex-wrap: wrap;
2019-10-30 11:58:46 +01:00
2022-10-03 09:42:05 +02:00
.tag {
background: $tag-background;
2022-08-19 18:19:11 +02:00
color: $tag-color;
2022-10-03 09:42:05 +02:00
border-radius: $tag-border-radius;
border: 1px solid #aaa;
font-size: $tag-font-size;
display: inline-block;
margin: .2rem $tag-spacing;
2019-10-30 11:58:46 +01:00
2022-10-03 09:42:05 +02:00
a {
display: block;
color: $tag-color;
white-space: nowrap;
padding: $tag-padding;
&:hover {
color: $primary;
}
2019-10-30 11:58:46 +01:00
}
}
}
2022-08-19 18:19:11 +02:00
.taglist.centering {
justify-content: center;
2022-10-03 09:42:05 +02:00
.tag { text-transform: capitalize }
2022-08-19 18:19:11 +02:00
}