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

This commit is contained in:
Vitalie Braga
2019-03-05 10:07:56 -08:00
committed by Micah Godbolt
parent a2c2b0f3e9
commit 6e014b20af
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ let index = 0;
const className = mergeStyles({
padding: 25,
...getTheme().effects.elevation4
boxShadow: 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,
...getTheme().effects.elevation4
boxShadow: getTheme().effects.elevation4
});
export class TodoApp extends React.Component<any, Store> {