Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
.heading {
.groupInfo {
flex-direction: row;
.weight {
text-align: end;
}
.name {
margin-bottom: 0px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const ScorecardGroups: FC<ScorecardGroupsProps> = (props: ScorecardGroupsProps)
<div className={styles.groupNumber}>{`Group ${index + 1}`}</div>
<div className={styles.groupInfo}>
<div className={styles.name}>{group.name}</div>
<div>{group.weight}</div>
<div className={styles.weight}>{group.weight}</div>
</div>
</div>
<ScorecardSections sections={group.sections} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@
.name {
margin-bottom: 0px;
}
.weight {
text-align: end;
}
}
}
.questions {
Expand All @@ -98,7 +101,10 @@
}
}
.right {
justify-content: flex-start;
justify-content: flex-end;
.weight {
text-align: end;
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const ScorecardSections: FC<ScorecardSectionsProps> = (props: ScorecardSectionsP
<div>{`Section ${sectionIndex + 1}`}</div>
<div className={styles.sectionInfo}>
<div className={styles.name}>{section.name}</div>
<div>{section.weight}</div>
<div className={styles.weight}>{section.weight}</div>
</div>
</div>
<div className={styles.questions}>
Expand Down Expand Up @@ -55,7 +55,7 @@ const ScorecardSections: FC<ScorecardSectionsProps> = (props: ScorecardSectionsP
</div>
</div>
<div className={styles.right}>
<div>{question.weight}</div>
<div className={styles.weight}>{question.weight}</div>
</div>
</div>
))
Expand Down