Actualiser src/features/editor/card.jsx
Deploy to home / deploy (push) Successful in 11s

This commit is contained in:
cvancau
2026-08-09 18:25:52 +02:00
parent 1f9f221713
commit 4572fefa0d
+3 -3
View File
@@ -6,12 +6,12 @@ export default function Card(props) {
' mb-2 mr-3 flex flex-col justify-start border border-gray-300 rounded-md shadow-md bg-white'
}
>
<header className="flex items-start justify-between py-1 px-2 border-b border-solid border-gray-200">
<h3 className="pointer-events-none text-xl font-semibold text-gray-900">
<header className="flex items-start justify-between py-0.5 px-1 border-b border-gray-200">
<h3 className="pointer-events-none text-xs font-semibold text-gray-900">
{props.header}
</h3>
</header>
<section className="flex-grow flex flex-col justify-evenly my-1 px-3">
<section className="flex-grow flex flex-col justify-evenly my-0.5 px-1">
{props.children}
</section>
</div>