29 lines
467 B
CSS
29 lines
467 B
CSS
.wrapper {
|
|
border-bottom: 1px solid rgba(17, 17, 17, 0.2);
|
|
padding-bottom: var(--Spacing-x3);
|
|
}
|
|
|
|
.header {
|
|
margin-top: var(--Spacing-x2);
|
|
margin-bottom: var(--Spacing-x2);
|
|
}
|
|
|
|
.list {
|
|
margin-top: var(--Spacing-x4);
|
|
list-style: none;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
column-gap: var(--Spacing-x2);
|
|
row-gap: var(--Spacing-x4);
|
|
}
|
|
|
|
.list > li {
|
|
width: 100%;
|
|
}
|
|
|
|
.list input[type="radio"] {
|
|
opacity: 0;
|
|
position: fixed;
|
|
width: 0;
|
|
}
|