We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e2f2c4 commit 5dda93eCopy full SHA for 5dda93e
1 file changed
index.html
@@ -45,6 +45,7 @@
45
display: grid;
46
grid-template-rows: auto 1fr auto;
47
transition: background var(--transition);
48
+ overflow: hidden;
49
}
50
51
body,
@@ -91,11 +92,13 @@
91
92
display: flex;
93
justify-content: center;
94
align-items: center;
95
96
+ min-height: 0;
97
98
99
#editor {
100
width: 100%;
- height: 80vh;
101
+ height: min(80vh, 100%);
102
padding-inline: clamp(20px, 10vw, 20vh);
103
padding-block: 2.5vh;
104
font: inherit;
0 commit comments