2022-01-14 15:50:02 +01:00
|
|
|
import { makeStyles } from '@material-ui/core/styles';
|
|
|
|
|
|
|
|
export const useStyles = makeStyles(theme => ({
|
|
|
|
container: {
|
|
|
|
minHeight: '80vh',
|
|
|
|
width: '100%',
|
|
|
|
display: 'flex',
|
|
|
|
margin: '0 auto',
|
2022-03-09 14:59:24 +01:00
|
|
|
borderRadius: '1rem',
|
|
|
|
overflow: 'hidden',
|
2022-01-14 15:50:02 +01:00
|
|
|
[theme.breakpoints.down(900)]: {
|
|
|
|
flexDirection: 'column',
|
|
|
|
},
|
|
|
|
},
|
2022-03-09 14:59:24 +01:00
|
|
|
modal: {
|
|
|
|
minHeight: '100vh',
|
|
|
|
borderRadius: 0,
|
|
|
|
},
|
2022-01-14 15:50:02 +01:00
|
|
|
sidebar: {
|
|
|
|
backgroundColor: theme.palette.primary.light,
|
|
|
|
padding: '2rem',
|
|
|
|
width: '35%',
|
|
|
|
[theme.breakpoints.down(900)]: {
|
|
|
|
width: '100%',
|
|
|
|
},
|
|
|
|
[theme.breakpoints.down(500)]: {
|
|
|
|
padding: '2rem 1rem',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
title: {
|
2022-03-14 13:14:26 +01:00
|
|
|
marginBottom: '1.5rem',
|
2022-01-14 15:50:02 +01:00
|
|
|
fontWeight: 'normal',
|
|
|
|
},
|
|
|
|
subtitle: {
|
|
|
|
color: '#fff',
|
|
|
|
marginBottom: '1rem',
|
|
|
|
display: 'flex',
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
alignItems: 'center',
|
|
|
|
fontWeight: 'normal',
|
|
|
|
},
|
|
|
|
description: {
|
|
|
|
color: '#fff',
|
|
|
|
},
|
|
|
|
linkContainer: {
|
|
|
|
margin: '1.5rem 0',
|
|
|
|
display: 'flex',
|
|
|
|
alignItems: 'center',
|
|
|
|
},
|
|
|
|
linkIcon: {
|
|
|
|
marginRight: '0.5rem',
|
|
|
|
color: '#fff',
|
|
|
|
},
|
|
|
|
documentationLink: {
|
|
|
|
color: '#fff',
|
|
|
|
display: 'block',
|
|
|
|
},
|
|
|
|
formContent: {
|
|
|
|
backgroundColor: '#fff',
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
padding: '2rem',
|
|
|
|
width: '65%',
|
|
|
|
[theme.breakpoints.down(900)]: {
|
|
|
|
width: '100%',
|
|
|
|
},
|
|
|
|
[theme.breakpoints.down(500)]: {
|
|
|
|
padding: '2rem 1rem',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
icon: { fill: '#fff' },
|
2022-03-14 13:14:26 +01:00
|
|
|
mobileGuidanceBgContainer: {
|
|
|
|
position: 'absolute',
|
|
|
|
right: '-3px',
|
|
|
|
top: '-3px',
|
|
|
|
backgroundColor: theme.palette.primary.light,
|
|
|
|
},
|
|
|
|
mobileGuidanceBackground: {
|
|
|
|
position: 'absolute',
|
|
|
|
right: '-3px',
|
|
|
|
top: '-3px',
|
|
|
|
width: '75px',
|
|
|
|
height: '75px',
|
|
|
|
},
|
|
|
|
mobileGuidanceButton: {
|
|
|
|
position: 'absolute',
|
|
|
|
zIndex: 400,
|
|
|
|
right: 0,
|
|
|
|
},
|
|
|
|
infoIcon: {
|
|
|
|
fill: '#fff',
|
|
|
|
},
|
2022-01-14 15:50:02 +01:00
|
|
|
}));
|