Remove unecessary position relative rules

This commit is contained in:
fragosti
2018-06-22 12:22:31 -07:00
parent de2dcbae5a
commit 7fb8b546f9
2 changed files with 4 additions and 2 deletions

View File

@@ -21,6 +21,8 @@ export interface RelayerGridTileProps {
const styles: Styles = {
root: {
boxSizing: 'border-box',
// All material UI components have position: relative
// which creates a new stacking context and makes z-index stuff impossible. So reset.
position: 'static',
},
innerDiv: {