Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit ead6817

Browse files
author
Manuel Proß
committed
feat(FE): add styling to card, remove unused import
1 parent 232ca72 commit ead6817

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

web/src/components/Card/Card.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
import React from 'react';
2-
31
type CardProps = {
42
children: React.ReactNode;
53
};
64

75
export default function Card({ children }: CardProps) {
8-
return <div>{children}</div>;
6+
return <div className="rounded-xl pt-6 px-6 pb-10 bg-gray-1">{children}</div>;
97
}

0 commit comments

Comments
 (0)