This commit is contained in:
Manav Rathi
2025-01-07 19:21:39 +05:30
parent a6d420bbaa
commit fe0d7417af

View File

@@ -10,6 +10,10 @@ export const getComponents = (
styleOverrides: {
body: {
fontFamily: typography.fontFamily,
// MUI has different letter spacing for each variant, but those
// are values arrived at for the default Material font, and
// don't work for the font that we're using, so reset it to a
// reasonable value that works for our font.
letterSpacing: "-0.011em",
},
strong: { fontWeight: 700 },
@@ -18,7 +22,12 @@ export const getComponents = (
MuiTypography: {
defaultProps: {
// MUI has body1 as the default variant for Typography, but our
// variant scheme is different, instead of body1/2, we have
// large/body/small etc. So reset the default to our equivalent of
// body1, which is "body".
variant: "body",
// Map all our custom variants to <p>.
variantMapping: {
large: "p",
body: "p",