fix: some details

This commit is contained in:
Daniel Soares
2021-12-15 08:11:58 -03:00
parent 2f4dd0097b
commit 5df44ceddc
22 changed files with 330 additions and 118 deletions

View File

@@ -2,25 +2,29 @@ import { styled, theme } from '../../styles/stitches.config'
export const Wrapper = styled('main', {
display: 'grid',
gridTemplateColumns: '1fr 1fr'
gridTemplateColumns: '1fr 1fr',
position: 'fixed',
inset: 0
})
export const Content = styled('div', {
display: 'flex',
flexDirection: 'column',
gap: '1rem',
fontFamily: theme.fonts.roboto
padding: '5rem 1rem 1rem',
fontFamily: theme.fonts.roboto,
color: theme.colors.slate900,
background: theme.colors.slate50,
overflowY: 'scroll'
})
export const Preview = styled('div', {
position: 'relative',
overflowY: 'scroll',
'&::after': {
content: '',
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0
inset: 0
}
})