From e195055a0cb18a10fcca729e7e1f1e19a2d877b4 Mon Sep 17 00:00:00 2001 From: Adolfo Panizo Date: Sun, 16 Sep 2018 09:49:08 +0200 Subject: [PATCH] Paper component for Open Safe Stepper process --- src/routes/open/components/OpenPaper/index.jsx | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/src/routes/open/components/OpenPaper/index.jsx b/src/routes/open/components/OpenPaper/index.jsx index 4ee2464f..a00c4ba6 100644 --- a/src/routes/open/components/OpenPaper/index.jsx +++ b/src/routes/open/components/OpenPaper/index.jsx @@ -2,19 +2,11 @@ import * as React from 'react' import { withStyles } from '@material-ui/core/styles' import Paper from '@material-ui/core/Paper' -import Block from '~/components/layout/Block' -import { lg } from '~/theme/variables' const styles = () => ({ root: { - padding: lg, + margin: '10px', maxWidth: '770px', - borderBottomRightRadius: '0px', - borderBottomLeftRadius: '0px', - }, - container: { - maxWidth: '600px', - letterSpacing: '-0.5px', }, }) @@ -25,9 +17,7 @@ type Props = { const OpenPaper = ({ classes, children }: Props) => ( - - {children} - + {children} )