fix(ui): fix missing space between rounded-lg and transition-all in Button class

This commit is contained in:
2026-04-22 14:55:19 -04:00
parent 7c85e54b26
commit 7ca818da5a
5 changed files with 153 additions and 64 deletions
+3 -3
View File
@@ -24,9 +24,9 @@ const Badge = ({
};
const sizes = {
sm: 'px-2 py-0.5 rounded text-[12px]',
md: 'px-2.5 py-0.5 rounded text-[12px]',
lg: 'px-3 py-1 rounded text-xs'
sm: 'px-2 py-0.5 rounded-lg text-[12px]',
md: 'px-2.5 py-0.5 rounded-lg text-[12px]',
lg: 'px-3 py-1 rounded-lg text-xs'
};
return (