diff options
author | 2024-08-25 04:03:44 +0100 | |
---|---|---|
committer | 2024-08-25 04:03:44 +0100 | |
commit | 7e5e980bb328d2cf769a427c9781b8135d1151c3 (patch) | |
tree | de95cc2f6656a5d719677260ea6d2ddac82cd9f4 | |
parent | Add API module for templates (diff) |
Add overflow CSS for cards
-rw-r--r-- | thallium-frontend/src/components/Card.tsx | 1 |
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; }>` |