Skip to content
Snippets Groups Projects
Commit 1c1d402b authored by esikkala's avatar esikkala
Browse files

Set app background color in single place

parent f02319f6
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,6 @@ const styles = theme => ({
paddingTop: theme.spacing(1),
paddingLeft: theme.spacing(1.5),
paddingRight: theme.spacing(1.5),
backgroundColor: '#bdbdbd',
[theme.breakpoints.down('sm')]: {
marginTop: 56,
},
......
......@@ -64,7 +64,7 @@ const styles = theme => ({
},
mainContainer: {
height: 'auto',
backgroundColor: '#bdbdbd',
// backgroundColor: '#bdbdbd',
padding: theme.spacing(1),
[theme.breakpoints.down('sm')]: {
marginTop: 56, // app bar
......@@ -77,7 +77,7 @@ const styles = theme => ({
},
perspectiveContainerHeaderExpanded: {
height: 'auto',
backgroundColor: '#bdbdbd',
// backgroundColor: '#bdbdbd',
padding: theme.spacing(1),
[theme.breakpoints.down('sm')]: {
marginTop: 256, // app bar + header
......@@ -90,7 +90,7 @@ const styles = theme => ({
},
perspectiveContainer: {
height: 'auto',
backgroundColor: '#bdbdbd',
// backgroundColor: '#bdbdbd',
padding: theme.spacing(1),
[theme.breakpoints.down('sm')]: {
marginTop: 133, // app bar + header
......@@ -103,7 +103,7 @@ const styles = theme => ({
},
instancePageContainerHeaderExpanded: {
height: 'auto',
backgroundColor: '#bdbdbd',
// backgroundColor: '#bdbdbd',
padding: theme.spacing(1),
[theme.breakpoints.down('sm')]: {
marginTop: 296,
......@@ -116,7 +116,7 @@ const styles = theme => ({
},
instancePageContainer: {
height: 'auto',
backgroundColor: '#bdbdbd',
// backgroundColor: '#bdbdbd',
padding: theme.spacing(1),
[theme.breakpoints.down('sm')]: {
marginTop: 173,
......
......@@ -18,6 +18,7 @@
}
#root, #app {
height: 100%;
background-color: #bdbdbd;
}
a, a:visited, a:hover, a:active {
color: inherit;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment