mirror of
https://github.com/penpot/penpot.git
synced 2026-03-05 17:51:17 +00:00
50 lines
626 B
CSS
50 lines
626 B
CSS
:root {
|
|
width: 100dvw;
|
|
height: 100dvh;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: grid;
|
|
/* overflow: hidden; */
|
|
width: 100dvw;
|
|
height: 100dvh;
|
|
}
|
|
|
|
#playground {
|
|
color: #c0c0c2;
|
|
background-color: #18181a;
|
|
display: grid;
|
|
max-height: 100cqh;
|
|
}
|
|
|
|
#info {
|
|
/* background-color: #f00; */
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
}
|
|
|
|
#app {
|
|
/* background-color: #0f0; */
|
|
}
|
|
|
|
canvas {
|
|
width: 100%;
|
|
height: max-content;
|
|
}
|
|
|
|
.text-editor-container {
|
|
position: fixed;
|
|
min-width: 1rem;
|
|
min-height: 1rem;
|
|
transform-origin: top left;
|
|
color: transparent;
|
|
}
|
|
|
|
.text-editor-content {
|
|
outline: 1px solid red !important;
|
|
}
|