diff options
| author | codetorso <[email protected]> | 2024-07-01 06:48:00 +0530 |
|---|---|---|
| committer | codetorso <[email protected]> | 2024-07-01 06:48:00 +0530 |
| commit | 888a1a589f1a3b218007da6fb6f2d0a512af0401 (patch) | |
| tree | 09f691308779aa836e77af7e5662313339a6a934 | |
| parent | canvas (3/3) (diff) | |
| download | supermemory-888a1a589f1a3b218007da6fb6f2d0a512af0401.tar.xz supermemory-888a1a589f1a3b218007da6fb6f2d0a512af0401.zip | |
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> |