aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-08-25 04:03:44 +0100
committerGravatar Joe Banks <[email protected]>2024-08-25 04:03:44 +0100
commit7e5e980bb328d2cf769a427c9781b8135d1151c3 (patch)
treede95cc2f6656a5d719677260ea6d2ddac82cd9f4
parentAdd API module for templates (diff)
Add overflow CSS for cards
-rw-r--r--thallium-frontend/src/components/Card.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/thallium-frontend/src/components/Card.tsx b/thallium-frontend/src/components/Card.tsx
index 1d4c0c8..ac38c5a 100644
--- a/thallium-frontend/src/components/Card.tsx
+++ b/thallium-frontend/src/components/Card.tsx
@@ -10,6 +10,7 @@ const CardContainer = styled.div<{ $seamless?: boolean; }>`
box-shadow: 10px 10px 0 ${({ theme }) => theme.cardShadow};
margin-top: ${({ $seamless }) => $seamless ? "0px" : "30px"};
+ overflow-wrap: break-word;
`;
const CardTitle = styled.div<{ $seamless?: boolean; }>`