20 lines
321 B
CSS
20 lines
321 B
CSS
.wrapper {
|
|
display: grid;
|
|
padding: var(--Space-x2) var(--Space-x3);
|
|
gap: var(--Space-x1);
|
|
border-radius: var(--Corner-Radius-md);
|
|
background: var(--Surface-Secondary-Default);
|
|
}
|
|
|
|
.heading {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.caption {
|
|
color: var(--Text-Secondary);
|
|
}
|
|
|
|
.text {
|
|
color: var(--Text-Default);
|
|
}
|