From 65ff9b0180566935337d70e0c9608a1eacd93fa3 Mon Sep 17 00:00:00 2001 From: Chi-Sheng Liu Date: Wed, 27 Mar 2024 17:52:38 +0800 Subject: [PATCH] feat(navbar): Change the font family of navbar from Roboto Condensed to Roboto Signed-off-by: Chi-Sheng Liu --- packages/primitives/src/CustomNavBar/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/primitives/src/CustomNavBar/index.tsx b/packages/primitives/src/CustomNavBar/index.tsx index 6d159d989..5f904230c 100644 --- a/packages/primitives/src/CustomNavBar/index.tsx +++ b/packages/primitives/src/CustomNavBar/index.tsx @@ -20,6 +20,7 @@ const ThemedAppBar = styled(AppBar)(({ theme }) => ({ background: theme.palette.common.primary.flyte, fontFamily: 'Roboto Condensed', overflow: 'visible', + textAlign: 'center', '&, & *': { '&::-webkit-scrollbar': { @@ -29,7 +30,7 @@ const ThemedAppBar = styled(AppBar)(({ theme }) => ({ }, span: { - fontFamily: 'Roboto Condensed', + fontFamily: 'Roboto', fontSize: '12px', WebkitFontSmoothing: 'subpixel-antialiased', letterSpacing: '0.1px',