Updated to Next.js 13
This commit is contained in:
22
styles/Layout.module.css
Normal file
22
styles/Layout.module.css
Normal file
@@ -0,0 +1,22 @@
|
||||
.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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user