diff options
| author | CodeTorso <[email protected]> | 2024-07-01 06:49:00 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-07-01 06:49:00 +0530 |
| commit | 6489156912e2dec374e203d18f0a06adbd992d64 (patch) | |
| tree | 09f691308779aa836e77af7e5662313339a6a934 | |
| parent | Merge pull request #90 from Dhravya/editor (diff) | |
| parent | dhravya's improvements (diff) | |
| download | supermemory-6489156912e2dec374e203d18f0a06adbd992d64.tar.xz supermemory-6489156912e2dec374e203d18f0a06adbd992d64.zip | |
Merge pull request #91 from Dhravya/editor
dhravya's improvements
| -rw-r--r-- | apps/web/components/canvas/textCard.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/web/components/canvas/textCard.tsx b/apps/web/components/canvas/textCard.tsx index b24dae52..79ed4091 100644 --- a/apps/web/components/canvas/textCard.tsx +++ b/apps/web/components/canvas/textCard.tsx @@ -25,9 +25,11 @@ export class textCardUtil extends BaseBoxShapeUtil<ITextCardShape> { height: s.props.h, width: s.props.w, pointerEvents: "all", - background: "#2C3439", + background: "#2d333a", borderRadius: "16px", + border: "2px solid #3e4449", padding: "8px 14px", + overflow: "auto" }} > <h1 style={{ fontSize: "15px" }}>{s.props.content}</h1> |