Files
web/packages/design-system/lib/components/Badge/badge.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

43 lines
568 B
CSS

.badge {
border-radius: var(--Corner-Radius-xl);
display: flex;
align-items: center;
justify-content: center;
padding: var(--Space-x025);
}
.primary {
background-color: var(--Surface-Brand-Primary-2-Default);
color: var(--Text-Inverted);
}
.green {
background-color: var(--Surface-Feedback-Succes-light);
color: var(--Text-Feedback-Succes);
}
._36 {
width: 36px;
height: 36px;
}
._32 {
width: 32px;
height: 32px;
}
._28 {
width: 28px;
height: 28px;
}
._24 {
width: 24px;
height: 24px;
}
._20 {
width: 20px;
height: 20px;
}