fix: conflicts

This commit is contained in:
Jannat Patel
2022-02-22 11:18:57 +05:30
7 changed files with 111 additions and 67 deletions

View File

@@ -308,11 +308,6 @@ input[type=checkbox] {
width: 100px;
}
.custom-checkbox {
display: flex;
align-items: center;
}
.custom-checkbox>label>input {
visibility: hidden;
}
@@ -324,6 +319,10 @@ input[type=checkbox] {
border-radius: var(--border-radius-md);
}
.empty-checkbox {
margin-right: 0.5rem;
}
.custom-checkbox>label>input:checked+.empty-checkbox {
background: url(/assets/school/icons/tick.svg);
background-repeat: no-repeat;
@@ -331,6 +330,8 @@ input[type=checkbox] {
}
.quiz-label {
display: flex;
align-items: center;
margin-bottom: 0;
cursor: pointer;
}
@@ -815,12 +816,16 @@ input[type=checkbox] {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 5rem;
}
.question {
flex-direction: column;
width: 85%;
margin: 0 auto;
}
.question-card {
flex-direction: column;
padding: 1.25rem;
}
.question p {
@@ -879,6 +884,7 @@ input[type=checkbox] {
.lesson-pagination {
display: flex;
justify-content: space-between;
align-items: center;
margin: 24px 0px 0px;
}
@@ -1678,7 +1684,7 @@ pre {
}
}
.review-author {
.bold-heading {
font-size: var(--text-lg);
color: var(--gray-900);
font-weight: 600;
@@ -1714,3 +1720,36 @@ pre {
.course-home-top-container {
position: relative;
}
.question-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 2rem;
}
.question-number {
padding: 0.25rem 0.75rem;
border-radius: 50%;
box-shadow: var(--shadow-sm);
}
.option-text {
padding: 0.75rem;
box-shadow: var(--shadow-sm);
border-radius: var(--border-radius-md);
flex: 1;
}
.active-option .option-text {
background-color: var(--blue-50);
border: 1px solid var(--blue-500);
}
.question-text {
font-size: var(--text-lg);
color: var(--gray-900);
font-weight: 600;
flex-grow: 1;
margin-left: 1rem;
}