Spaces:
Sleeping
Sleeping
File size: 490 Bytes
72ce0ab b73e986 72ce0ab | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | body,
html {
height: 100vh;
width: 100vw;
margin: 0;
}
.root-frame{
width: 100vw;
height: 100vh;
border: none;
display: block;
}
.polygon-draw {
align-items: center;
width: auto;
height: 100vh;
aspect-ratio: 1/0.6;
}
.inference-plots-container {
width: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: row;
}
.inference-plot {
flex: 0 0 48%;
gap: 5%;
align-self: center;
}
.button-icon{
color: inherit;
} |