Add files via upload

This commit is contained in:
Arc
2019-12-12 23:08:26 +00:00
committed by GitHub
parent 4921ffc776
commit b7e5bff034
75 changed files with 6766 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
/*
* Component: Label
* ----------------
*/
.label-default {
background-color: @gray;
color: #444;
}
.label-danger {
&:extend(.bg-red);
}
.label-info {
&:extend(.bg-aqua);
}
.label-waring {
&:extend(.bg-yellow);
}
.label-primary {
&:extend(.bg-light-blue);
}
.label-success {
&:extend(.bg-green);
}