fix: z-index should be the same value ()

This commit is contained in:
Zeke Zhang 2023-12-28 16:18:07 +08:00 committed by GitHub
parent 2074e5e4b8
commit 50851dc441
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,3 +61,9 @@ body a:active {
.ant-btn-link:active {
color: var(--colorPrimaryTextActive);
}
/* fix https://nocobase.height.app/T-2838 */
/* antd 组件的层级有问题,有的弹窗是 1000 有的是 1200会导致弹窗被覆盖的问题。弹窗这里应该使用同一个值是比较合理的 */
.ant-modal-wrap, .ant-modal-mask {
z-index: 1000 !important;
}