This commit is contained in:
Janis
2023-01-22 17:04:42 +01:00
parent bead72cde7
commit 2c0207dc65
21 changed files with 338 additions and 93 deletions

View File

@@ -1,10 +1,22 @@
@import "../variables.scss";
.adminArticlesCreate {
& > h1 {
text-align: center;
}
.formControl {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 10px 30px;
}
.form {
display: grid;
display: flex;
flex-direction: column;
gap: 70px;
grid-template-columns: $tutorial-content-table-width minmax(0px, 1fr);
margin: 0px auto;
max-width: 1800px;
padding: 0px 24px;
@@ -42,17 +54,35 @@
gap: 10px 10px;
textarea {
color: var(--font-color);
border: 2px solid rgba(59, 59, 59, 0.434);
border: 2px solid #3b3b3b80;
background-color: transparent;
min-height: 700px;
resize: none;
display: block;
border-radius: 0px;
outline: 0;
resize: vertical;
resize: both;
font-family: inherit;
font-size: inherit;
}
& > div {
max-width: 1000px;
border: 2px solid #3b3b3b80;
}
}
}
.contentTable {
.contentTableEditor {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px 10px;
& > div {
border: 2px solid #3b3b3b80;
max-width: 1000px;
}
}
}
}