Remplacer simpleMDE par un éditeur maison #110

Merged
Darks merged 34 commits from new_editor into dev 2022-12-18 00:08:52 +01:00
2 changed files with 17 additions and 2 deletions
Showing only changes of commit 2da20720bb - Show all commits

View File

@ -52,7 +52,6 @@
left: 0px;
width: auto;
min-width: 30vw;
white-space: nowrap;
text-align: left;
right: inherit;
background: var(--background-hover);
@ -71,4 +70,13 @@
}
.editor .modal > div label {
margin-top: 0.4rem;
}
@media screen and (max-width:849px) {
.editor .modal {
width: 80vw;
position: fixed;
left: 50vw;
transform: translateX(-50%);
top: 50vh;
}
}

View File

@ -65,10 +65,17 @@
left: 0px;
width: auto;
min-width: 30vw;
white-space: nowrap;
text-align: left;
right: inherit;
@media screen and (max-width: @tiny) {
width: 80vw;
position: fixed;
left: 50vw;
transform: translateX(-50%);
top: 50vh;
}
background: var(--background-hover);
border: var(--border);
color: var(--text);