fix: remove hardcoded fontFamily for oneOf labels

fixes #1120
This commit is contained in:
Roman Hotsiy 2019-12-12 16:10:07 +02:00
parent 6e390f9c79
commit 094ce914e3
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0

View File

@ -11,7 +11,7 @@ export const OneOfLabel = styled.span`
font-size: 0.9em;
margin-right: 10px;
color: ${props => props.theme.colors.primary.main};
font-family: Montserrat;
font-family: ${props => props.theme.typography.headings.fontFamily};
}
`;