add markdown viewer

This commit is contained in:
Janis
2023-01-15 02:48:17 +01:00
parent 9617dc2ef3
commit a0598484b4
11 changed files with 1263 additions and 122 deletions

View File

@@ -9,14 +9,26 @@
max-width: 1800px;
padding: 0px 24px;
.content {
.articleEditor {
display: flex;
flex-direction: column;
textarea {
color: var(--font-color);
background-color: rgba(16, 16, 16, 0.234);
width: 100%;
min-height: 500px;
.markdown {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px 10px;
textarea {
color: var(--font-color);
border: 2px solid rgba(59, 59, 59, 0.434);
background-color: transparent;
min-height: 700px;
resize: none;
display: block;
border-radius: 0px;
outline: 0;
resize: vertical;
font-family: inherit;
font-size: inherit;
}
}
}
}