diff --git a/frontend/app/components/ui/Button/Button.tsx b/frontend/app/components/ui/Button/Button.tsx index 9f7e8f965..ec57b2231 100644 --- a/frontend/app/components/ui/Button/Button.tsx +++ b/frontend/app/components/ui/Button/Button.tsx @@ -25,7 +25,7 @@ export default (props: Props) => { ...rest } = props; - const classes = ['relative flex items-center h-10 px-3 rounded tracking-wide']; + const classes = ['relative flex items-center h-10 px-3 rounded tracking-wide whitespace-nowrap']; if (variant === 'default') { classes.push('bg-white hover:bg-gray-lightest border border-gray-light') }