@insaic/neon
Version:
A Mobile UI Components built on Vue
50 lines (48 loc) • 958 B
CSS
.sq-tag {
padding: 2px 4px;
color: #fff;
font-size: 12px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.sq-tag-plain {
background-color: #fff ;
}
.sq-tag-plain.sq-tag-default {
color: #c9c9c9;
border: 1px solid #c9c9c9;
}
.sq-tag-plain.sq-tag-primary {
color: #4A90E2;
border: 1px solid #4A90E2;
}
.sq-tag-plain.sq-tag-success {
color: #50a04f;
border: 1px solid #50a04f;
}
.sq-tag-plain.sq-tag-error {
color: #fc7152;
border: 1px solid #fc7152;
}
.sq-tag-default {
background-color: #c9c9c9;
border: 1px solid #c9c9c9;
}
.sq-tag-primary {
background-color: #4A90E2;
border: 1px solid #4A90E2;
}
.sq-tag-success {
background-color: #50a04f;
border: 1px solid #50a04f;
}
.sq-tag-error {
background-color: #fc7152;
border: 1px solid #fc7152;
}
.sq-tag-square {
border-radius: 2px;
}
.sq-tag-circle {
border-radius: 10000px;
}