ignore whole .docz folder + copied styles for main layout

This commit is contained in:
Martin Allien
2021-04-22 17:13:24 +02:00
parent 087e74013e
commit 481a696c67
2 changed files with 20 additions and 1 deletions

2
.gitignore vendored
View File

@@ -1,3 +1,3 @@
node_modules
.DS_Store
.docz/.cache/
.docz/

View File

@@ -0,0 +1,19 @@
import { media } from '~theme/breakpoints'
export const main = {
display: 'flex',
flexDirection: 'column',
minHeight: '100vh',
}
export const wrapper = {
py: 0,
flex: 1,
display: 'grid',
gridTemplateColumns: '250px 1fr',
minHeight: '100vh',
[media.tablet]: {
display: 'block',
},
fontFamily: 'Inter var,sans-serif',
}