Skip to content

Commit

Permalink
fix(backdrop): backdrop closed not clickable
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Mollweide committed Mar 10, 2018
1 parent c3815b2 commit f733801
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/SpeedDialBackdrop/SpeedDialBackdrop.styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,18 @@ export const styles = (theme: ThemeType): StylesType => {
},
'root--state-closed': {
opacity: 0,
pointerEvents: 'none',
},
'root--state-opening': {
opacity: 0.8,
pointerEvents: 'none',
},
'root--state-opened': {
opacity: 0.8,
},
'root--state-closing': {
opacity: 0,
pointerEvents: 'none',
},
};
return stylesRaw;
Expand Down

0 comments on commit f733801

Please sign in to comment.