Skip to content

Commit

Permalink
Merge pull request #2269 from vishnubansaltarento/kb-5608-5609-fix
Browse files Browse the repository at this point in the history
Kb 5608 5609 fix
  • Loading branch information
vishnubansaltarento authored Jul 6, 2024
2 parents a83b48a + 77c7f25 commit 12f159f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,12 @@
color: #666666
}



::ng-deep .consent-checkbox .mat-checkbox-checked.mat-accent .mat-checkbox-background {
background-color: #1a4ca1 !important;
}

@media only screen and (max-width: 767px) {
.box-height {
// min-height: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,10 @@ <h2 [innerHTML]="question?.question" class="m-auto quiz-question mat-h2 flex-cen
</div>
<div>
<div class="question-marks" *ngIf="assessmentType === 'questionWeightage' && showQuestionMarks === 'Yes'">
<p *ngIf="question?.marks">{{question?.marks}} {{ 'practiceoverview.marks' | translate }}</p>
<p *ngIf="question?.marks">
<span *ngIf="question?.marks === 1">{{question?.marks}} {{ 'practiceoverview.mark' | translate }}</span>
<span *ngIf="question?.marks > 1">{{question?.marks}} {{ 'practiceoverview.marks' | translate }}</span>
</p>
</div>
<div class="question-marks" *ngIf="assessmentType === 'optionalWeightage'">
<p>{{questionNumber}}/{{ total }}</p>
Expand Down

0 comments on commit 12f159f

Please sign in to comment.