fix: show only first line in questions table

This commit is contained in:
Jannat Patel
2023-06-13 19:39:00 +05:30
parent 43128d7ea3
commit 89206f94f0
4 changed files with 15 additions and 11 deletions

View File

@@ -162,8 +162,8 @@ textarea.field-input {
.lesson-editor {
border: 1px solid var(--gray-300);
border-radius: var(--border-radius-md);
padding-top: 0.5rem;
border-radius: var(--border-radius-md);
padding-top: 0.5rem;
}
.lesson-parent .breadcrumb {
@@ -197,6 +197,14 @@ textarea.field-input {
cursor: pointer;
}
.question-row .ql-editor.read-mode p {
display: none;
}
.question-row .ql-editor.read-mode p:first-child {
display: block;
}
.codex-editor path {
stroke: var(--gray-800);
}