13 lines
185 B
CSS
13 lines
185 B
CSS
.layoutContainer {
|
|
display: flex;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
background: #050505;
|
|
}
|
|
|
|
.mainContent {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
background: #0a0a0a;
|
|
} |