diff options
-rw-r--r-- | src/components/Button.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 56915d4..35d3f32 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -20,7 +20,7 @@ const sizes = { sm: 'p-3', }; -const style = 'm-3 rounded-sm font-semibold focus:outline-none active:ring-2'; +const style = 'm-2 rounded-sm font-semibold focus:outline-none active:ring-2'; const Button: React.FC<Props> = ({ onClick, route, variant = 'contained', size = 'md', type = 'button', ...props }) => { const history = useHistory(); |