22 lines
557 B
CSS
22 lines
557 B
CSS
.chip {
|
|
background-color: var(--Component-Button-Inverted-Fill-Default);
|
|
border: 1px solid var(--Component-Button-Inverted-Border-Default);
|
|
border-radius: var(--Corner-Radius-sm);
|
|
padding: var(--Space-x1) var(--Space-x15);
|
|
color: var(--Text-Interactive-Default);
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
gap: var(--Space-x05);
|
|
}
|
|
|
|
.chip:hover {
|
|
background-color: var(--Surface-Primary-Hover-Accent);
|
|
}
|
|
|
|
.chip:focus {
|
|
outline-offset: 4px;
|
|
outline-color: var(--Border-Interactive-Focus);
|
|
}
|