fix: 主界面最外层正常情况下出现滚动条

This commit is contained in:
xiaoxian521
2021-10-18 16:02:26 +08:00
parent db4855737b
commit f45588e811
4 changed files with 33 additions and 29 deletions

View File

@@ -50,22 +50,9 @@ const transition = computed(() => {
<style scoped>
.app-main {
min-height: calc(100vh - 70px);
width: 100%;
height: 90vh;
height: 100vh;
position: relative;
overflow-x: hidden;
}
.fixed-header + .app-main {
padding-top: 50px;
}
</style>
<style lang="scss">
.el-popup-parent--hidden {
.fixed-header {
padding-right: 15px;
}
}
</style>

View File

@@ -234,19 +234,6 @@ onBeforeMount(() => {
z-index: 999;
}
.fixed-header {
position: fixed;
top: 0;
right: 0;
z-index: 9;
width: calc(100% - 210px);
transition: width 0.28s;
}
.mobile .fixed-header {
width: 100%;
}
.re-screen {
margin-top: 12px;
}