diff --git a/src/front/Components/DesignSystem/Button/classes.module.scss b/src/front/Components/DesignSystem/Button/classes.module.scss index a355c4e5..fdd40bcc 100644 --- a/src/front/Components/DesignSystem/Button/classes.module.scss +++ b/src/front/Components/DesignSystem/Button/classes.module.scss @@ -13,7 +13,7 @@ white-space: nowrap; user-select: none; cursor: pointer; - font-family: var(--font-primary); + font-family: var(--font-text-family); svg { width: 18px; diff --git a/src/front/Components/DesignSystem/MultiSelect/classes.module.scss b/src/front/Components/DesignSystem/MultiSelect/classes.module.scss index 4e71fd93..7ea429a1 100644 --- a/src/front/Components/DesignSystem/MultiSelect/classes.module.scss +++ b/src/front/Components/DesignSystem/MultiSelect/classes.module.scss @@ -25,7 +25,7 @@ } } .label { - font-family: var(--font-primary); + font-family: var(--font-text-family); font-style: normal; font-weight: 400; font-size: 12px; diff --git a/src/front/Components/DesignSystem/MultiSelect/styles.tsx b/src/front/Components/DesignSystem/MultiSelect/styles.tsx index 023596de..cc0ca791 100644 --- a/src/front/Components/DesignSystem/MultiSelect/styles.tsx +++ b/src/front/Components/DesignSystem/MultiSelect/styles.tsx @@ -3,7 +3,7 @@ export const styles = { ...provided, cursor: "pointer", padding: "8px 24px", - fontFamily: "var(--font-primary)", + fontFamily: "var(--font-text-family)", fontStyle: "normal", fontWeight: "400", fontSize: "18px", @@ -25,7 +25,7 @@ export const styles = { ...provided, padding: 0, minWidth: "100px", - fontFamily: "var(--font-primary)", + fontFamily: "var(--font-text-family)", fontStyle: "normal", fontWeight: "600", fontSize: "16px", diff --git a/src/front/Components/DesignSystem/Toasts/ToastsContainer/ToastElement/classes.module.scss b/src/front/Components/DesignSystem/Toasts/ToastsContainer/ToastElement/classes.module.scss index d5790631..f9a0c403 100644 --- a/src/front/Components/DesignSystem/Toasts/ToastsContainer/ToastElement/classes.module.scss +++ b/src/front/Components/DesignSystem/Toasts/ToastsContainer/ToastElement/classes.module.scss @@ -63,7 +63,7 @@ } .header { - font-family: var(--font-primary); + font-family: var(--font-text-family); font-style: normal; font-weight: 600; font-size: 16px; @@ -89,7 +89,7 @@ } .text-container { - font-family: var(--font-primary); + font-family: var(--font-text-family); font-style: normal; font-weight: 400; font-size: 14px; diff --git a/src/front/Components/DesignSystem/ToolTip/index.tsx b/src/front/Components/DesignSystem/ToolTip/index.tsx index 764b019f..dd7cd1d6 100644 --- a/src/front/Components/DesignSystem/ToolTip/index.tsx +++ b/src/front/Components/DesignSystem/ToolTip/index.tsx @@ -25,7 +25,7 @@ const LightTooltip = styled(({ className, ...props }: TooltipProps) =>