Update look and feel

This commit is contained in:
jeffvli
2022-11-14 18:12:24 -08:00
parent 8dad9a8109
commit 8d5a05c329
27 changed files with 116 additions and 102 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ interface TextProps extends MantineTextDivProps {
const BaseText = styled(MantineText)<TextProps>`
color: ${(props) =>
props.$secondary ? 'var(--main-fg-secondary)' : 'var(--main-fg)'};
font-family: ${(props) => props.font};
font-family: ${(props) => props.font || 'var(--content-font-family)'};
cursor: ${(props) => (props.$link ? 'cursor' : 'default')};
user-select: ${(props) => (props.$noSelect ? 'none' : 'auto')};
${(props) => props.overflow === 'hidden' && textEllipsis}