From 87f1e6fed159cb2a50aca95421e9f79d5f6dbb35 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 12 Dec 2021 21:04:41 -0800 Subject: [PATCH] Set nav text to center --- src/components/shared/styled.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/shared/styled.ts b/src/components/shared/styled.ts index 88a3e3c..b02bfc1 100644 --- a/src/components/shared/styled.ts +++ b/src/components/shared/styled.ts @@ -255,7 +255,8 @@ export const StyledIconButton = styled(IconButton)` export const StyledNavItem = styled(Nav.Item)` a { - border-radius: ${(props) => props.theme.other.button.borderRadius} !important; + text-align: center; + border-radius: 0px !important; color: ${(props) => props.active ? props.theme.colors.primary : props.theme.colors.nav.color} !important;