13 lines
224 B
CSS
13 lines
224 B
CSS
.MainLayout {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
grid-template-rows: 100vh;
|
|
place-items: stretch;
|
|
}
|
|
|
|
@media all and (max-width: 600px) {
|
|
.MainLayout {
|
|
grid-template-columns: min-content max-content;
|
|
}
|
|
}
|