mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 04:45:06 +01:00
20 lines
258 B
Text
20 lines
258 B
Text
.root {
|
|
height: 100%;
|
|
display: flex;
|
|
}
|
|
|
|
.viewer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
position: relative;
|
|
}
|
|
|
|
:global(#viewer-container) {
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
}
|