Skip to content

Commit

Permalink
fix(header): add medium font to header right links
Browse files Browse the repository at this point in the history
  • Loading branch information
RobsonOlv committed Apr 25, 2023
1 parent 73ebe7b commit 05709ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/header/styles.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { SxStyleProp } from '@vtex/brand-ui'
import { VtexTrustMedium } from 'utils/fonts'

const menuContainer: SxStyleProp = {
display: 'flex',
Expand Down Expand Up @@ -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',
}

Expand Down

0 comments on commit 05709ae

Please sign in to comment.