fix(client): remove z-index
This commit is contained in:
parent
f2710f2cdb
commit
9314bcd9f2
@ -76,7 +76,7 @@ const RowDivider = (props) => {
|
|||||||
`,
|
`,
|
||||||
)}
|
)}
|
||||||
style={{
|
style={{
|
||||||
zIndex: active ? 1000 : 0,
|
zIndex: active ? 1000 : -1,
|
||||||
// height: 24,
|
// height: 24,
|
||||||
// width: '100%',
|
// width: '100%',
|
||||||
// position: 'absolute',
|
// position: 'absolute',
|
||||||
@ -202,7 +202,7 @@ Grid.Row = observer((props) => {
|
|||||||
margin: 0 -24px;
|
margin: 0 -24px;
|
||||||
display: flex;
|
display: flex;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 0;
|
/* z-index: 0; */
|
||||||
`,
|
`,
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
@ -237,7 +237,7 @@ Grid.Col = observer((props: any) => {
|
|||||||
'nb-grid-col',
|
'nb-grid-col',
|
||||||
css`
|
css`
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 0;
|
/* z-index: 0; */
|
||||||
`,
|
`,
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
|
Loading…
Reference in New Issue
Block a user