diff options
Diffstat (limited to 'components/Layout.js')
-rw-r--r-- | components/Layout.js | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/components/Layout.js b/components/Layout.js index f77ea0c..8b6cf87 100644 --- a/components/Layout.js +++ b/components/Layout.js @@ -18,44 +18,6 @@ const Layout = ({ children, apps, setApps}) => { </main> <Header apps={apps} setApps={setApps} /> <Popup popup={popup} /> - <style jsx global>{` - main { - position: fixed; - top: 2em; - left: 0; - bottom: 0; - right: 0; - } - - body { - margin: 0; - color: #222; - height: 100vh; - overflow: hidden; - - background: #50a3a2; - background: -webkit-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%); - background: -moz-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%); - background: -o-linear-gradient(top left, #50a3a2 0%, #53e3a6 100%); - background: linear-gradient(to bottom right, #50a3a2 0%, #53e3a6 100%); - - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, - 'Helvetica Neue', Arial, Noto Sans, sans-serif, 'Apple Color Emoji', - 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; - } - - textarea, input { - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, - 'Helvetica Neue', Arial, Noto Sans, sans-serif, 'Apple Color Emoji', - 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; - } - - .container { - margin: 1.5rem auto; - padding-left: 2rem; - padding-right: 2rem; - } - `}</style> </Context.Provider> ) } |