diff --git a/src/components/Family/FamilySection.tsx b/src/components/Family/FamilySection.tsx index 89512f5..157e38e 100644 --- a/src/components/Family/FamilySection.tsx +++ b/src/components/Family/FamilySection.tsx @@ -239,6 +239,7 @@ const AddButton = styled.button` span { color:inherit; + font-weight: inherit; } &:hover { diff --git a/src/components/Family/TagsInput.tsx b/src/components/Family/TagsInput.tsx index 88fc0cf..4f6a50d 100644 --- a/src/components/Family/TagsInput.tsx +++ b/src/components/Family/TagsInput.tsx @@ -116,6 +116,9 @@ const Input = styled.input` &::placeholder { color:#A3ADA2; } + &:hover { + border-color: ${({theme}) => theme.colors.gray}; + } &:focus { border-color: ${({ theme }) => theme.colors.green}; }