mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-12 06:08:34 +00:00
31 lines
453 B
CSS
31 lines
453 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
background-color: #2a3236;
|
|
}
|
|
|
|
.react-codemirror2,
|
|
.CodeMirror {
|
|
height: 100% !important;
|
|
background-color: transparent !important;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.CodeMirror-line > span {
|
|
background-color: #2a323699;
|
|
}
|
|
|
|
.darken::before {
|
|
content: ' ';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: block;
|
|
background: black;
|
|
opacity: 0.5;
|
|
}
|