24 lines
396 B
CSS
24 lines
396 B
CSS
.components__cohabit_info_table {
|
|
display: grid;
|
|
gap: var(--_gap);
|
|
grid-template-columns: 1fr 1fr;
|
|
width: 100%;
|
|
margin-block: var(--_gap);
|
|
|
|
& section {
|
|
background-color: var(--_translucent);
|
|
padding: var(--_gap);
|
|
}
|
|
|
|
& h3,
|
|
.components__cohabit_info__subtitle {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
@media (width < 800px) {
|
|
.components__cohabit_info_table {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|