diff --git a/components/anotacoes/note-card.tsx b/components/anotacoes/note-card.tsx index 6b2e7ea..de632fe 100644 --- a/components/anotacoes/note-card.tsx +++ b/components/anotacoes/note-card.tsx @@ -82,9 +82,9 @@ export function NoteCard({ ].filter((action) => typeof action.onClick === "function"); return ( - - -
+ + +

{displayTitle} @@ -98,7 +98,7 @@ export function NoteCard({

{isTask ? ( -
+
{tasks.slice(0, 5).map((task) => (
) : ( -

+

{note.description}

)} {actions.length > 0 ? ( - + {actions.map(({ label, icon, onClick, variant }) => (