12 lines
152 B
CSS
12 lines
152 B
CSS
|
|
.layout {
|
||
|
|
display: flex;
|
||
|
|
height: 100vh;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
.main-container {
|
||
|
|
flex: 1;
|
||
|
|
background: #f5f5f5;
|
||
|
|
overflow-y: auto;
|
||
|
|
padding: 20px;
|
||
|
|
}
|