Skip to content

Commit

Permalink
[docs][material-ui] Fix typo in typography theme set up for templates (
Browse files Browse the repository at this point in the history
…#44338)

Signed-off-by: navedqb <[email protected]>
  • Loading branch information
navedqb authored Nov 11, 2024
1 parent b1e4d0b commit 9fbc6f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export const getDesignTokens = (mode) => {
},
},
typography: {
fontFamily: ['"Inter", "sans-serif"'].join(','),
fontFamily: 'Inter, sans-serif',
h1: {
fontSize: defaultTheme.typography.pxToRem(48),
fontWeight: 600,
Expand Down Expand Up @@ -318,7 +318,7 @@ export const colorSchemes = {
};

export const typography = {
fontFamily: ['"Inter", "sans-serif"'].join(','),
fontFamily: 'Inter, sans-serif',
h1: {
fontSize: defaultTheme.typography.pxToRem(48),
fontWeight: 600,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export const getDesignTokens = (mode: PaletteMode) => {
},
},
typography: {
fontFamily: ['"Inter", "sans-serif"'].join(','),
fontFamily: 'Inter, sans-serif',
h1: {
fontSize: defaultTheme.typography.pxToRem(48),
fontWeight: 600,
Expand Down Expand Up @@ -341,7 +341,7 @@ export const colorSchemes = {
};

export const typography = {
fontFamily: ['"Inter", "sans-serif"'].join(','),
fontFamily: 'Inter, sans-serif',
h1: {
fontSize: defaultTheme.typography.pxToRem(48),
fontWeight: 600,
Expand Down

0 comments on commit 9fbc6f9

Please sign in to comment.