fix: 左侧布局模式下取消固定 header 导致 header 底部阴影丢失 (#129)

This commit is contained in:
ClariS 2023-09-05 09:45:10 +08:00 committed by GitHub
parent 41c7ac1c9a
commit 6d6ee82379
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,7 +87,7 @@ $transition-time: 0.35s;
} }
.fixed-header { .fixed-header {
position: fixed; position: fixed !important;
top: 0; top: 0;
right: 0; right: 0;
z-index: 9; z-index: 9;
@ -96,6 +96,8 @@ $transition-time: 0.35s;
} }
.layout-header { .layout-header {
position: relative;
z-index: 9;
box-shadow: var(--el-box-shadow-lighter); box-shadow: var(--el-box-shadow-lighter);
} }