aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--thallium-frontend/src/components/Card.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/thallium-frontend/src/components/Card.tsx b/thallium-frontend/src/components/Card.tsx
index 99c79a6..9aac6b2 100644
--- a/thallium-frontend/src/components/Card.tsx
+++ b/thallium-frontend/src/components/Card.tsx
@@ -13,13 +13,14 @@ const CardContainer = styled.div`
const CardTitle = styled.div`
position: absolute;
- top: -12px;
+ top: -16px;
left: 16px;
background-color: ${({ theme }) => theme.cardBackgroundColor};
background: linear-gradient(0deg, ${({ theme }) => theme.cardBackgroundColor} 0%, ${({ theme }) => theme.cardBackgroundColor} 45%, ${({ theme }) => theme.backgroundColor} 45%);
padding: 0 8px;
font-weight: bold;
z-index: 1;
+ font-size: 1.2em;
`;
interface CardProps {