13 lines
275 B
CSS
13 lines
275 B
CSS
@layer components {
|
|
.badge {
|
|
padding: var(--spacing-xs) var(--spacing-s);
|
|
border-radius: var(--border-radius-xs);
|
|
flex: 0 0 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
line-height: 1.2em;
|
|
}
|
|
}
|