Add custom background and color text for tags

This commit is contained in:
taitus
2021-01-18 12:07:28 +01:00
parent 1eb06dfb99
commit e4e4e28ce6

View File

@@ -0,0 +1,12 @@
.sdg-related-list-selector {
.amsify-suggestags-area .amsify-select-tag {
color: $white;
@each $code, $color in $sdg-colors {
&[data-val^="#{$code}"] {
background-color: $color;
}
}
}
}