diff options
| author | 2024-08-17 16:41:40 +0100 | |
|---|---|---|
| committer | 2024-08-17 16:41:40 +0100 | |
| commit | b6f45e7b42f0ead1f1f1ad47fb8788839817776e (patch) | |
| tree | b8b3b40e522bcba858c97afe3011c6c42c8a3d86 /thallium-frontend/src | |
| parent | Actually fix footer alignment (diff) | |
Add some blur to the card titles
Diffstat (limited to 'thallium-frontend/src')
| -rw-r--r-- | thallium-frontend/src/components/Card.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thallium-frontend/src/components/Card.tsx b/thallium-frontend/src/components/Card.tsx index 8441386..1d4c0c8 100644 --- a/thallium-frontend/src/components/Card.tsx +++ b/thallium-frontend/src/components/Card.tsx @@ -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; |