updated create note form

This commit is contained in:
Ren Amamiya
2023-03-16 10:06:12 +07:00
parent e5bd58eca8
commit 123d22d5cf
8 changed files with 152 additions and 28 deletions

View File

@@ -4,7 +4,7 @@ import { memo } from 'react';
export const Single = memo(function Single({ event }: { event: any }) {
return (
<div className="flex h-min min-h-min w-full cursor-pointer select-text flex-col border-b border-zinc-800 py-4 px-6 hover:bg-zinc-800">
<div className="flex h-min min-h-min w-full cursor-pointer select-text flex-col border-b border-zinc-800 py-4 px-3">
<Content data={event} />
</div>
);