2021-12-13 00:36:38 -03:00
|
|
|
import { styled, theme } from '../../styles/stitches.config'
|
|
|
|
|
|
|
|
|
|
export const Wrapper = styled('main', {
|
|
|
|
|
display: 'grid',
|
2021-12-15 08:11:58 -03:00
|
|
|
gridTemplateColumns: '1fr 1fr',
|
|
|
|
|
position: 'fixed',
|
|
|
|
|
inset: 0
|
2021-12-13 00:36:38 -03:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
export const Content = styled('div', {
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexDirection: 'column',
|
|
|
|
|
gap: '1rem',
|
2021-12-15 08:11:58 -03:00
|
|
|
padding: '5rem 1rem 1rem',
|
|
|
|
|
fontFamily: theme.fonts.roboto,
|
|
|
|
|
color: theme.colors.slate900,
|
|
|
|
|
background: theme.colors.slate50,
|
|
|
|
|
overflowY: 'scroll'
|
2021-12-13 00:36:38 -03:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
export const Preview = styled('div', {
|
|
|
|
|
position: 'relative',
|
2021-12-15 08:11:58 -03:00
|
|
|
overflowY: 'scroll',
|
2021-12-13 00:36:38 -03:00
|
|
|
|
|
|
|
|
'&::after': {
|
|
|
|
|
content: '',
|
|
|
|
|
position: 'absolute',
|
2021-12-15 08:11:58 -03:00
|
|
|
inset: 0
|
2021-12-13 00:36:38 -03:00
|
|
|
}
|
|
|
|
|
})
|