Newer
Older
smart-home-server / webclient / src / scss / ui_components / _badges.scss
@eugene-sukhodolskiy eugene-sukhodolskiy 7 days ago 451 bytes UI kit
.badge {
	background: $color-primary;
	color: $color-dark;
	padding: $space-1 $space-2;
	font-size: $font-size-base;

	&.badge-success {
		background: $color-success;
	}

	&.badge-warning {
		background: $color-warning;
	}

	&.badge-error,
	&.badge-danger {
		background: $color-error;
	}

	&.badge-info {
		background: $color-info;
		color: $color-text-light;
	}

	&.badge-secondary {
		background: $color-secondary;
		color: $color-text-light;
	}
}