Skip to content

Commit

Permalink
add support CSS variables
Browse files Browse the repository at this point in the history
  • Loading branch information
alisasanib committed May 4, 2022
1 parent 10241ae commit 3f86023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-material/src/SpeedDial/SpeedDial.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const SpeedDialRoot = styled('div', {
return [styles.root, styles[`direction${capitalize(ownerState.direction)}`]];
},
})(({ theme, ownerState }) => ({
zIndex: theme.zIndex.speedDial,
zIndex: (theme.vars || theme).zIndex.speedDial,
display: 'flex',
alignItems: 'center',
pointerEvents: 'none',
Expand Down

0 comments on commit 3f86023

Please sign in to comment.