Skip to content

Commit 68da57b

Browse files
committed
fix: adjust z-index for table placeholder to prevent overlay issues
1 parent bb55382 commit 68da57b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Table/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const StyledTable = styled(AntdTable)`
3333
/* Avoid raising the "Keine Daten" overlay above elements such as the menu or dropdown, which have z-index 1050 */
3434
.mll-ant-table-placeholder {
3535
/* !important is necessary because antd sets the z-index to 9999 via the style attribute */
36-
z-index: 1049 !important;
36+
z-index: 990 !important;
3737
}
3838
3939
${(props) =>

0 commit comments

Comments
 (0)