mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
40 lines
926 B
TypeScript
40 lines
926 B
TypeScript
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
feedback: {
|
|
borderRadius: '12.5px',
|
|
backgroundColor: '#fff',
|
|
zIndex: 9999,
|
|
boxShadow: '2px 2px 4px 4px rgba(143,143,143, 0.25)',
|
|
padding: '1.5rem',
|
|
maxWidth: '400px',
|
|
width: '400px',
|
|
height: '200px',
|
|
},
|
|
animateContainer: {
|
|
zIndex: 9999,
|
|
},
|
|
container: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
position: 'relative',
|
|
},
|
|
close: {
|
|
position: 'absolute',
|
|
right: '-38px',
|
|
top: '-47px',
|
|
backgroundColor: '#fff',
|
|
boxShadow: '2px 2px 4px 4px rgba(143,143,143, 0.25)',
|
|
['&:hover']: {
|
|
backgroundColor: '#fff',
|
|
},
|
|
},
|
|
logo: {
|
|
width: '25px',
|
|
height: '25px',
|
|
},
|
|
cancel: {
|
|
marginLeft: '1rem',
|
|
},
|
|
}));
|