Skip to content

Commit

Permalink
fix(portal): adjust check icon on quick start guide
Browse files Browse the repository at this point in the history
  • Loading branch information
KsiBart committed Nov 13, 2024
1 parent 637b481 commit 0da6d75
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ const QuickStartGuide = () => {
goal as keyof (typeof quickStartGuideData)[keyof IQuickStartGuideObject]
] ? (
<Flex key={goal} gap={10}>
<CheckFilled />
<div className={styles.iconContainer}>
<CheckFilled />
</div>
<Text.LightMedium>
{i.goals[goal as keyof typeof i.goals]}
</Text.LightMedium>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
border-radius: 8px;
}

.iconContainer {
width: 20px;
}

.guideContainer {
justify-content: center;
align-items: center;
Expand Down

0 comments on commit 0da6d75

Please sign in to comment.