Tag Label
Shapes · .btn-tag-label
Text
Class name
Color hue
Radius · n/a
Size
.btn-tag-label {
display: inline-flex;
align-items: center;
padding: 12px 26px 12px 18px;
border: none;
border-radius: 999px 12px 12px 999px;
background: #f97316;
color: #431407;
font-family: inherit;
font-size: 15px;
font-weight: 700;
cursor: pointer;
transition: background 0.2s ease;
}
.btn-tag-label::before {
content: "";
width: 9px;
height: 9px;
margin-right: 12px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.35);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}
.btn-tag-label:hover {
background: #ea580c;
}
.btn-tag-label:active {
background: #c2410c;
}