diff --git a/src/front/Components/DesignSystem/CircleProgress/classes.module.scss b/src/front/Components/DesignSystem/CircleProgress/classes.module.scss index 9463ecf6..0ad37f7c 100644 --- a/src/front/Components/DesignSystem/CircleProgress/classes.module.scss +++ b/src/front/Components/DesignSystem/CircleProgress/classes.module.scss @@ -3,7 +3,7 @@ .root { display: flex; align-items: center; - gap: 24px; + gap: var(--spacing-sm); svg { width: 100%; diff --git a/src/front/Components/DesignSystem/CircleProgress/index.tsx b/src/front/Components/DesignSystem/CircleProgress/index.tsx index d468e4d2..741dd5f0 100644 --- a/src/front/Components/DesignSystem/CircleProgress/index.tsx +++ b/src/front/Components/DesignSystem/CircleProgress/index.tsx @@ -54,7 +54,7 @@ export default function CircleProgress(props: IProps) { /> - {percentage}% + {Math.round(percentage)}% );