Add missing overflow style value

This commit is contained in:
jeffvli 2023-01-02 17:53:27 -08:00
parent 65465d6cae
commit d7d611c6d1

View File

@ -17,6 +17,7 @@ interface TextTitleProps extends MantineTextTitleDivProps {
}
const StyledTextTitle = styled(MantineHeader)<TextTitleProps>`
overflow: ${(props) => props.overflow === 'visible' && 'visible'};
color: ${(props) => (props.$secondary ? 'var(--main-fg-secondary)' : 'var(--main-fg)')};
cursor: ${(props) => props.$link && 'cursor'};
transition: color 0.2s ease-in-out;