17 lines
No EOL
247 B
CSS
17 lines
No EOL
247 B
CSS
.layout {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
height: 100%;
|
|
}
|
|
.body {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 2rem;
|
|
}
|
|
|
|
@media(max-width: 1000px){
|
|
.sidebar {
|
|
display: none;
|
|
}
|
|
} |