File: D:/HostingSpaces/SBogers10/shop.komma.nl/resources/sass/kms/Components/tag.scss
/* KMS styling */
.c-tag {
display: inline-flex;
align-items: center;
padding: 4px 8px;
font-size: 12px;
line-height: 16px;
font-weight: 600;
border-radius: 500px;
text-transform: uppercase;
color: #4567AC;
background-color: #D9E6FF;
&::before {
content: '';
display: block;
width: 4px;
height: 4px;
margin-right: 4px;
border-radius: 50%;
background-color: currentColor;
}
&[data-status="positive"] {
color: #45AC51;
background-color: #DEFFE2;
}
&[data-status="negative"] {
color: #E64C2E;
background-color: #FFDAD3;
}
&[data-status="pending"] {
color: #E6A82E;
background-color: #FFF0D3;
}
}