fix:Mac M1 arm64 chrome浏览器版本适配,修复仪表板编辑是全屏模式可能出现滚动条问题

This commit is contained in:
wangjiahao 2021-07-22 10:02:17 +08:00
parent 7ed6e64242
commit ad1b829356

View File

@ -97,6 +97,7 @@
<div <div
id="canvasInfo" id="canvasInfo"
class="content this_canvas" class="content this_canvas"
:class="{'border-hidden':canvasStyleData.selfAdaption}"
@drop="handleDrop" @drop="handleDrop"
@dragover="handleDragOver" @dragover="handleDragOver"
@mousedown="handleMouseDown" @mousedown="handleMouseDown"
@ -804,4 +805,9 @@ export default {
} }
} }
.border-hidden {
overflow: hidden;
}
</style> </style>