From ec4f07eab24f5c913b6e5dd9a714c12044aec2f4 Mon Sep 17 00:00:00 2001 From: Mohit Singh <30595867+qmohitsingh@users.noreply.github.com> Date: Fri, 17 Nov 2023 16:39:29 -0500 Subject: [PATCH] Changed the font-weight to regular (Issue #2500) (#2550) fix:bug: changed the font-weight to regular (Issue #2500) --- front/src/modules/ui/display/tag/components/Tag.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/modules/ui/display/tag/components/Tag.tsx b/front/src/modules/ui/display/tag/components/Tag.tsx index 63868b059..3eff13037 100644 --- a/front/src/modules/ui/display/tag/components/Tag.tsx +++ b/front/src/modules/ui/display/tag/components/Tag.tsx @@ -31,7 +31,7 @@ const StyledTag = styled.h3<{ flex-direction: row; font-size: ${({ theme }) => theme.font.size.md}; font-style: normal; - font-weight: ${({ theme }) => theme.font.weight.medium}; + font-weight: ${({ theme }) => theme.font.weight.regular}; gap: ${({ theme }) => theme.spacing(2)}; height: ${({ theme }) => theme.spacing(5)}; margin: 0;