diff --git a/front/src/modules/ui/components/form/DatePicker.tsx b/front/src/modules/ui/components/form/DatePicker.tsx index cf0f63b1dba..575827aa770 100644 --- a/front/src/modules/ui/components/form/DatePicker.tsx +++ b/front/src/modules/ui/components/form/DatePicker.tsx @@ -22,7 +22,7 @@ const StyledContainer = styled.div` font-size: ${({ theme }) => theme.font.size.md}; border: none; display: block; - font-weight: ${({ theme }) => theme.font.weight.medium}; + font-weight: ${({ theme }) => theme.font.weight.regular}; } & .react-datepicker-popper { diff --git a/front/src/modules/ui/components/inputs/AutosizeTextInput.tsx b/front/src/modules/ui/components/inputs/AutosizeTextInput.tsx index b0dd6258f9d..3d88974152b 100644 --- a/front/src/modules/ui/components/inputs/AutosizeTextInput.tsx +++ b/front/src/modules/ui/components/inputs/AutosizeTextInput.tsx @@ -28,7 +28,7 @@ const StyledTextArea = styled(TextareaAutosize)` color: ${({ theme }) => theme.font.color.primary}; font-family: inherit; font-size: ${({ theme }) => theme.font.size.md}; - font-weight: ${({ theme }) => theme.font.weight.medium}; + font-weight: ${({ theme }) => theme.font.weight.regular}; line-height: 16px; overflow: auto; padding: 8px; @@ -42,7 +42,7 @@ const StyledTextArea = styled(TextareaAutosize)` &::placeholder { color: ${({ theme }) => theme.font.color.light}; - font-weight: ${({ theme }) => theme.font.weight.medium}; + font-weight: ${({ theme }) => theme.font.weight.regular}; } `; diff --git a/front/src/modules/ui/components/table/table-header/TableHeader.tsx b/front/src/modules/ui/components/table/table-header/TableHeader.tsx index 3753dc20ef3..dd9ce642b7f 100644 --- a/front/src/modules/ui/components/table/table-header/TableHeader.tsx +++ b/front/src/modules/ui/components/table/table-header/TableHeader.tsx @@ -49,7 +49,7 @@ const StyledViewSection = styled.div` const StyledFilters = styled.div` display: flex; - font-weight: ${({ theme }) => theme.font.weight.medium}; + font-weight: ${({ theme }) => theme.font.weight.regular}; gap: 2px; `;