mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-12 06:08:34 +00:00
fixes https://github.com/tidalcycles/strudel/issues/432 + fix style regression in mini repl
24 lines
359 B
CSS
24 lines
359 B
CSS
.darken::before {
|
|
content: ' ';
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: block;
|
|
background: black;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
#code .cm-content {
|
|
padding-top: 12px !important;
|
|
padding-left: 8px !important;
|
|
}
|
|
|
|
#code .cm-scroller {
|
|
padding-bottom: 50vh;
|
|
}
|
|
#code .cm-line > * {
|
|
background: var(--lineBackground);
|
|
}
|