Fix wrong font in chips and tabs (#10825)
Fix wrong font in chips and tabs --------- Co-authored-by: Félix Malfait <felix@twenty.com>
This commit is contained in:
@ -22,6 +22,7 @@ type TabProps = {
|
||||
const StyledTab = styled('button', {
|
||||
shouldForwardProp: (prop) => isPropValid(prop) && prop !== 'active',
|
||||
})<{ active?: boolean; disabled?: boolean; to?: string }>`
|
||||
all: unset;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid ${({ theme }) => theme.border.color.light};
|
||||
border-color: ${({ theme, active }) =>
|
||||
@ -37,6 +38,7 @@ const StyledTab = styled('button', {
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-top: none;
|
||||
font-family: inherit;
|
||||
|
||||
display: flex;
|
||||
gap: ${({ theme }) => theme.spacing(1)};
|
||||
|
||||
Reference in New Issue
Block a user