From ef6def3d188d488d5bd73169d8169059e8f319c4 Mon Sep 17 00:00:00 2001 From: James D <71669407+JamesAtIntegratnIO@users.noreply.github.com> Date: Mon, 1 Apr 2024 07:36:45 -0600 Subject: [PATCH] Update docs/getting-started/app-custom-theme.md Co-authored-by: Andre Wanlin <67169551+awanlin@users.noreply.github.com> Signed-off-by: James D. <71669407+JamesAtIntegratnIO@users.noreply.github.com> Signed-off-by: James D --- docs/getting-started/app-custom-theme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/app-custom-theme.md b/docs/getting-started/app-custom-theme.md index 819f57c061..6a2f7b19ab 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 [Material UI 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';