Files
web/packages/design-system/lib/components/ChipLink/chip-link.module.css
Erik Tiekstra 4de24e9f2a feat(BOOK-391): Added theme and logos for Bassin Seven
* chore: Updated border-radius variables after import change

Approved-by: Linus Flood
2026-01-22 07:03:25 +00:00

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);
}