修复本地存储预览关闭按钮被 header遮挡的问题

This commit is contained in:
dqjdda
2019-11-16 19:56:33 +08:00
parent 683b94c351
commit c4386d5cc3
2 changed files with 5 additions and 2 deletions

View File

@@ -3,13 +3,13 @@
.main-container { .main-container {
min-height: 100%; min-height: 100%;
transition: margin-left .28s; transition: margin-left .28s;
margin-left: 195px; margin-left: 193px;
position: relative; position: relative;
} }
// 侧边栏 // 侧边栏
.sidebar-container { .sidebar-container {
transition: width 0.28s; transition: width 0.28s;
width: 195px !important; width: 193px !important;
height: 100%; height: 100%;
position: fixed; position: fixed;
font-size: 0px; font-size: 0px;

View File

@@ -252,4 +252,7 @@ export default {
/deep/ .el-image__error, .el-image__placeholder{ /deep/ .el-image__error, .el-image__placeholder{
background: none; background: none;
} }
/deep/ .el-image-viewer__wrapper{
top: 55px;
}
</style> </style>