26 lines
580 B
CSS
26 lines
580 B
CSS
.root {
|
|
width: min-content;
|
|
height: min-content;
|
|
place-content: center;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 5px 8px;
|
|
outline: solid 1px #5249e3;
|
|
outline-offset: -1px;
|
|
border-radius: 6px;
|
|
}
|
|
.Label {
|
|
color: #5249e3;
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
font-family: PingFang SC, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans',
|
|
'Liberation Sans', sans-serif;
|
|
z-index: 0;
|
|
width: min-content;
|
|
height: min-content;
|
|
text-align: center;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
flex-direction: column;
|
|
}
|