Revert "Fixing the spread on theme.effects.elevation due to some chnages (#87)" (#88)

This reverts commit 6e014b20af.
This commit is contained in:
Micah Godbolt
2019-03-05 10:53:25 -08:00
committed by GitHub
parent 6e014b20af
commit 97fdb46df8
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ let index = 0;
const className = mergeStyles({
padding: 25,
boxShadow: getTheme().effects.elevation4
...getTheme().effects.elevation4
});
// Uncomment to see loadTheme

View File

@@ -13,7 +13,7 @@ let index = 0;
// TODO: Change this to add other CSS styles like backgroundColor, fontSize, etc
const className = mergeStyles({
padding: 25,
boxShadow: getTheme().effects.elevation4
...getTheme().effects.elevation4
});
export class TodoApp extends React.Component<any, Store> {