mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-31 01:16:01 +02:00
11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
toastWrapper: {
|
|
right: 0,
|
|
left: 0,
|
|
margin: '0 auto',
|
|
maxWidth: '450px',
|
|
},
|
|
}));
|