Skip to content

Commit 149995f

Browse files
committed
TCA-438 - update status icon size for course outline
1 parent 5d8b4d0 commit 149995f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src-ts/tools/learn/learn-lib/course-outline/status-icon/StatusIcon.module.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,8 @@
33
.checkmark {
44
@include icon-size(26);
55
flex: 0 0 auto;
6-
}
6+
svg {
7+
width: 100%;
8+
height: 100%;
9+
}
10+
}

src-ts/tools/learn/learn-lib/course-outline/step-icon/StepIcon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const StepIcon: FC<StepIconProps> = (props: StepIconProps) => {
2424
return (
2525
<>
2626
{props.label && props.completed && (
27-
<IconSolid.CheckCircleIcon />
27+
<IconSolid.CheckCircleIcon viewBox='2 2 16 16' />
2828
)}
2929

3030
{!props.label && (

0 commit comments

Comments
 (0)