mirror of
https://github.com/yeongpin/cursor-free-vip.git
synced 2025-08-03 04:57:36 +08:00
24 lines
363 B
CSS
24 lines
363 B
CSS
html {
|
|
height: 100vh;
|
|
height: 100svh;
|
|
overflow: hidden;
|
|
width: 100vw;
|
|
}
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
justify-content: stretch;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
.body {
|
|
flex-shrink: 0;
|
|
}
|
|
.codeMirrorContainer {
|
|
flex-grow: 1;
|
|
}
|
|
#console {
|
|
text-align: left;
|
|
}
|