From 7e10b292030ad9846dc4098327d6e18eaa78d528 Mon Sep 17 00:00:00 2001 From: James D Date: Sun, 31 Mar 2024 17:41:28 -0600 Subject: [PATCH] fix: use ` to resolve Vale errors Signed-off-by: James D --- docs/getting-started/app-custom-theme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/app-custom-theme.md b/docs/getting-started/app-custom-theme.md index 2def5b8685..819f57c061 100644 --- a/docs/getting-started/app-custom-theme.md +++ b/docs/getting-started/app-custom-theme.md @@ -229,7 +229,7 @@ const myTheme = createUnifiedTheme({ ``` ## Custom Fonts -To add custom fonts, you first need to declare the font style following the @font-face syntax from [Mui Typography](https://mui.com/material-ui/customization/typography/). After that you can then utilize the styleOverrides of MuiCssBaseline under components to set the default font. +To add custom fonts, you first need to declare the font style following the `@font-face` syntax from [Mui Typography](https://mui.com/material-ui/customization/typography/). After that you can then utilize the `styleOverrides` of `MuiCssBaseline` under components to set the default font. ```ts title="packages/app/src/theme/myTheme.ts" import MyCustomFont from '../assets/fonts/My-Custom-Font.woff2'; @@ -255,7 +255,7 @@ export const myTheme = createUnifiedTheme({ }, }; ``` -If you want to utilize different fonts, then you can set the top level fontFamily to what you want for your body, and then override fontFamily in typography to control fonts for various headings. +If you want to utilize different fonts, then you can set the top level `fontFamily` to what you want for your body, and then override `fontFamily` in `typography` to control fonts for various headings. ```ts title="packages/app/src/theme/myTheme.ts" import MyCustomFont from '../assets/fonts/My-Custom-Font.woff2'; import myAwesomeFont from '../assets/fonts/My-Awesome-Font.woff2';