Skip to content

Commit

Permalink
Add some blur to the card titles
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Aug 17, 2024
1 parent 8d456a8 commit b6f45e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thallium-frontend/src/components/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const CardTitle = styled.div<{ $seamless?: boolean; }>`
top: -16px;
left: 16px;
background-color: ${({ theme }) => theme.cardBackgroundColor};
${({ $seamless, theme }) => $seamless ? "" : `background: linear-gradient(0deg, ${theme.cardBackgroundColor} 0%, ${theme.cardBackgroundColor} 45%, ${theme.backgroundColor} 45%)`};
${({ $seamless, theme }) => $seamless ? "" : `background: linear-gradient(0deg, ${theme.cardBackgroundColor} 0%, ${theme.cardBackgroundColor} 45%, ${theme.backgroundColor} 55%)`};
padding: 0 8px;
font-weight: bold;
z-index: 1;
Expand Down

0 comments on commit b6f45e7

Please sign in to comment.