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;
align-items: center;
border: solid 0.5px $border;
background-color: white;
}
@media only screen and (max-width: $(screenXs)px) {

View File

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

View File

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

View File

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

View File

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

View File

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