fix(ui) - button text nowrap

This commit is contained in:
Shekar Siri 2022-06-29 16:09:34 +02:00
parent e5f488f422
commit 53c2f37d8a

View file

@ -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')
}