Update base components

This commit is contained in:
jeffvli
2022-11-14 01:14:39 -08:00
parent c54eea4382
commit 420d4835be
5 changed files with 66 additions and 0 deletions
+1
View File
@@ -24,6 +24,7 @@ const BaseText = styled(MantineText)<TextProps>`
color: ${(props) =>
props.$secondary ? 'var(--main-fg-secondary)' : 'var(--main-fg)'};
font-family: ${(props) => props.font};
cursor: default;
user-select: ${(props) => (props.$noSelect ? 'none' : 'auto')};
${(props) => props.overflow === 'hidden' && textEllipsis}