11 lines
221 B
CSS
11 lines
221 B
CSS
.dom {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: calc(100% / var(--scale));
|
|
position: absolute;
|
|
top: 0;
|
|
transform: scale(var(--scale));
|
|
transform-origin: top left;
|
|
width: calc(100% / var(--scale));
|
|
}
|