历史记录列表滚动条修复

This commit is contained in:
fofolee 2024-12-21 23:38:08 +08:00
parent 0ef0249f58
commit 27b32ae846

View File

@ -387,6 +387,9 @@ export default {
flex: 1;
padding: 0;
background: #f4f4f4;
overflow-y: auto;
overflow-x: hidden;
height: calc(100vh - 64px); /* Subtract header height */
}
.history-item {
@ -395,6 +398,8 @@ export default {
border-left: 3px solid transparent;
position: relative;
overflow: hidden;
white-space: normal;
word-break: break-word;
}
.history-item::before {
@ -585,4 +590,10 @@ export default {
opacity: 0;
}
}
.history-item q-item-label {
width: 100%;
overflow-wrap: break-word;
word-wrap: break-word;
}
</style>