16 lines
231 B
CSS
16 lines
231 B
CSS
|
body{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.flex-column{
|
||
|
width: calc(100% - 15px);
|
||
|
height: calc(100% - 15px);
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.visionforge-output{
|
||
|
flex-grow: 1;
|
||
|
}
|