feat(wip): add dashboard

This commit is contained in:
Daniel Soares
2021-12-13 00:36:38 -03:00
parent 7b7e6b9cbd
commit c7dc121d9e
10 changed files with 208 additions and 3 deletions

View File

@@ -0,0 +1,26 @@
import { styled, theme } from '../../styles/stitches.config'
export const Wrapper = styled('main', {
display: 'grid',
gridTemplateColumns: '1fr 1fr'
})
export const Content = styled('div', {
display: 'flex',
flexDirection: 'column',
gap: '1rem',
fontFamily: theme.fonts.roboto
})
export const Preview = styled('div', {
position: 'relative',
'&::after': {
content: '',
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0
}
})