style(ui): change default button size from sm to md and remove explicit size="sm" props

This commit is contained in:
2026-04-22 19:45:56 -04:00
parent 482578af84
commit 18f1fcdbd0
6 changed files with 11 additions and 19 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ const AdminHeader = ({ title, description, backHref, backLabel = '← Retour', a
</div>
<div className='flex gap-2'>
{backHref && (
<Button variant="secondary" size="sm" onClick={() => router.push(backHref)}>
<Button variant="secondary" onClick={() => router.push(backHref)}>
{backLabel}
</Button>
)}