22 lines
353 B
CSS
22 lines
353 B
CSS
.layout {
|
|
overflow-x: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
.layout .info_page {
|
|
color: #ebebeb;
|
|
}
|
|
.content {
|
|
flex-grow: 1;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.layout {
|
|
display: block;
|
|
}
|
|
.content {
|
|
flex-grow: none;
|
|
width: 70vw;
|
|
margin-left: 30vw;
|
|
}
|
|
} |