Adjusting layout & background on views

This commit is contained in:
apanizo 2018-09-01 09:38:31 +02:00
parent 99991e8004
commit b35bb3d805
6 changed files with 5 additions and 4 deletions

View File

@ -5,6 +5,7 @@
justify-items: center; justify-items: center;
align-items: center; align-items: center;
border: solid 0.5px $border; border: solid 0.5px $border;
background-color: white;
} }
@media only screen and (max-width: $(screenXs)px) { @media only screen and (max-width: $(screenXs)px) {

View File

@ -29,6 +29,7 @@ const styles = theme => ({
borderBottom: `solid 2px ${border}`, borderBottom: `solid 2px ${border}`,
alignItems: 'center', alignItems: 'center',
height: '52px', height: '52px',
backgroundColor: 'white',
}, },
logo: { logo: {
padding: `${sm} ${md}`, padding: `${sm} ${md}`,

View File

@ -164,6 +164,7 @@ class GnoStepper extends React.PureComponent<Props, State> {
const styles = { const styles = {
root: { root: {
flex: '1 1 auto', flex: '1 1 auto',
backgroundColor: 'transparent',
}, },
} }

View File

@ -1,10 +1,8 @@
.page { .page {
display: flex; display: flex;
flex: 1 0 auto; flex: 1 0 auto;
width: 100%;
flex-direction: column; flex-direction: column;
padding: $xl; padding: $xl;
background-color: #F2F2F8;
} }
.center { .center {

View File

@ -2,6 +2,5 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
flex: 1 1 auto; flex: 1 1 auto;
background-color: white;
max-width: 100%; max-width: 100%;
} }

View File

@ -13,7 +13,8 @@ body {
color: $fontColor; color: $fontColor;
font-family: 'Roboto Mono', monospace; font-family: 'Roboto Mono', monospace;
font-size: $mediumFontSize; font-size: $mediumFontSize;
margin: 0; margin: 0;
background-color: $background;
} }
body>div:first-child { body>div:first-child {