Merge pull request #626 from pateljannat/ins-notes-changes

feat: editor js for instructor notes
This commit is contained in:
Jannat Patel
2023-09-28 11:32:00 +05:30
committed by GitHub
9 changed files with 185 additions and 150 deletions

View File

@@ -160,6 +160,10 @@ textarea.field-input {
position: unset;
}
.codex-editor--narrow .ce-toolbar__actions {
right: 100%;
}
.lesson-editor {
border: 1px solid var(--gray-300);
border-radius: var(--border-radius-md);
@@ -2453,4 +2457,16 @@ select {
.batch-details {
width: 100%;
}
}
.collapse-section {
font-size: var(--text-lg);
cursor: pointer;
}
.collapse-section.collapsed .icon {
transition: all 0.5s;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
transform: rotate(180deg);
}