fastbin/styles/Editor.module.css
2022-02-22 17:06:57 +05:30

36 lines
No EOL
543 B
CSS

.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
color: white;
align-items: flex-start;
justify-content: center;
}
.editor {
display: flex;
color: white;
width: 100%;
height: 100%;
flex: 1;
padding-top: 10px;
}
.editor .line-numbers {
padding-left: 10px;
padding-right: 10px;
user-select: none;
}
.code-editor {
flex: 1;
padding: 3px;
overflow-x: auto;
resize: none;
outline: none;
background-color: transparent;
border: none;
color: #fff;
font-size: larger;
}