blob: d4fa5a79c961dab52120658dfead2ca705d1c401 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import styled from "styled-components";
const CardContainer = styled.div<{ $seamless?: boolean; }>`
border: 3px solid ${({ theme }) => theme.borderColor};
border-top: ${({ $seamless }) => $seamless ? "0" : ""};
padding: 16px;
position: relative;
background-color: ${({ theme }) => theme.cardBackgroundColor};
text-align: left;
box-shadow: 10px 10px 0 ${({ theme }) => theme.cardShadow};
margin-top: ${({ $seamless }) => $seamless ? "0px" : "30px"};
overflow-wrap: break-word;
`;
const CardTitle = styled.div<{ $seamless?: boolean; }>`
position: absolute;
top: -16px;
left: 16px;
background-color: ${({ theme }) => theme.cardBackgroundColor};
${({ $seamless, theme }) => $seamless ? "" : `background: linear-gradient(0deg, ${theme.cardBackgroundColor}ff 0%, ${theme.cardBackgroundColor}ff 45%, ${theme.backgroundColor}ff 50%, ${theme.backgroundColor}00 50%)`};
padding: 0 8px;
font-weight: bold;
z-index: 1;
font-size: 1.2em;
`;
interface CardProps {
title: string;
children: React.ReactNode;
seamless?: boolean;
className?: string;
}
const Card: React.FC<CardProps> = ({ title, children, seamless, className }: CardProps) => {
return (
<CardContainer $seamless={seamless} className={className}>
<CardTitle $seamless={seamless}>{title}</CardTitle>
{children}
</CardContainer>
);
};
const StyledCard = styled(Card)``;
export default StyledCard;
|