add markdown component

This commit is contained in:
Janis
2023-01-12 11:56:21 +01:00
parent 8f7092cd72
commit 8db442be0f
8 changed files with 1830 additions and 67 deletions

View File

@@ -0,0 +1,23 @@
@import "../variables.scss";
.adminArticlesCreate {
.form {
display: grid;
gap: 70px;
grid-template-columns: $tutorial-content-table-width minmax(0px, 1fr);
margin: 0px auto;
max-width: 1800px;
padding: 0px 24px;
.content {
display: flex;
flex-direction: column;
textarea {
color: var(--font-color);
background-color: rgba(16, 16, 16, 0.234);
width: 100%;
min-height: 500px;
}
}
}
}