You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
676 B

.EditableNoteArea {
height: 90%;
border: gray solid 1px;
padding: 10px;
display: flex;
justify-content: stretch;
}
.EditableNoteArea pre {
margin: 0;
padding: 0;
}
.EditableNoteArea textarea {
width: 100%;
height: 100%;
border: none;
background-color: black;
color: white;
}
.EditableNoteArea .markdownPreview {
flex-basis: 1 1 min-content;
overflow: scroll;
}
.EditableNoteArea .markdownPreview h1,
.EditableNoteArea .markdownPreview h2,
.EditableNoteArea .markdownPreview h3,
.EditableNoteArea .markdownPreview h4,
.EditableNoteArea .markdownPreview h5,
.EditableNoteArea .markdownPreview p {
margin-top: 0;
}