22 lines
419 B
CSS
22 lines
419 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x3);
|
|
}
|
|
|
|
.selections {
|
|
background-color: var(--Surface-Secondary-Default);
|
|
border-radius: var(--Corner-radius-Large);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
padding: var(--Spacing-x2);
|
|
}
|
|
|
|
.checkboxContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x2);
|
|
width: min(800px, 100%);
|
|
}
|