mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
Fixing the spread on theme.effects.elevation due to some chnages (#87)
This commit is contained in:
committed by
Micah Godbolt
parent
a2c2b0f3e9
commit
6e014b20af
@@ -10,7 +10,7 @@ let index = 0;
|
|||||||
|
|
||||||
const className = mergeStyles({
|
const className = mergeStyles({
|
||||||
padding: 25,
|
padding: 25,
|
||||||
...getTheme().effects.elevation4
|
boxShadow: getTheme().effects.elevation4
|
||||||
});
|
});
|
||||||
|
|
||||||
// Uncomment to see loadTheme
|
// Uncomment to see loadTheme
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ let index = 0;
|
|||||||
// TODO: Change this to add other CSS styles like backgroundColor, fontSize, etc
|
// TODO: Change this to add other CSS styles like backgroundColor, fontSize, etc
|
||||||
const className = mergeStyles({
|
const className = mergeStyles({
|
||||||
padding: 25,
|
padding: 25,
|
||||||
...getTheme().effects.elevation4
|
boxShadow: getTheme().effects.elevation4
|
||||||
});
|
});
|
||||||
|
|
||||||
export class TodoApp extends React.Component<any, Store> {
|
export class TodoApp extends React.Component<any, Store> {
|
||||||
|
|||||||
Reference in New Issue
Block a user