From 05709aec574052e315b5ab8eb0d1751861d6cf34 Mon Sep 17 00:00:00 2001 From: Robson Oliveira Date: Tue, 25 Apr 2023 17:42:30 -0300 Subject: [PATCH] fix(header): add medium font to header right links --- src/components/header/styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/header/styles.ts b/src/components/header/styles.ts index 370f89333..d26819850 100644 --- a/src/components/header/styles.ts +++ b/src/components/header/styles.ts @@ -1,4 +1,5 @@ import type { SxStyleProp } from '@vtex/brand-ui' +import { VtexTrustMedium } from 'utils/fonts' const menuContainer: SxStyleProp = { display: 'flex', @@ -107,10 +108,9 @@ const dropdownButton: (active: boolean) => SxStyleProp = (active: boolean) => ({ }) const rightButtonsText: SxStyleProp = { - fontWeight: 'normal', fontSize: '16px', lineHeight: '22px', - fontFamily: 'VTEX Trust Medium !important', + fontFamily: `${VtexTrustMedium.style.fontFamily} !important`, textTransform: 'none', }