fix: 修复文本过长导致的滚动条出现,影响标注定位

This commit is contained in:
maxmon 2021-07-09 22:02:19 +08:00
parent eaa98e6210
commit b4ffdbe89e
1 changed files with 4 additions and 0 deletions

View File

@ -832,6 +832,10 @@ export default {
overflow: auto;
/* font-size: 0; */
}
.ner-box::-webkit-scrollbar {
/* 隐藏标注区域的滚动条,防止影响到标注定位 */
width: 0;
}
.ner-box .word {
display: inline-block;
position: relative;