1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/common/NotFound/NotFound.styles.ts

35 lines
703 B
TypeScript
Raw Normal View History

import { makeStyles } from 'tss-react/mui';
export const useStyles = makeStyles()({
container: {
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
minHeight: '100vh',
padding: '2rem',
position: 'fixed',
backgroundColor: '#fff',
width: '100%',
},
logo: {
height: '80px',
},
content: {
display: 'flex',
position: 'relative',
},
buttonContainer: {
marginTop: '2rem',
},
homeButton: {
marginLeft: '1rem',
},
icon: {
height: '150px',
width: '150px',
position: 'absolute',
right: 100,
top: 45,
},
});