fix(model-coupon): 修正隐藏滚动条样式的选择器

使用深度选择器修正了`.hide-scrollbar`类的应用方式,以确保滚动条在Vue组件中被隐藏。之前的实现可能导致样式没有正确应用,因为它们被更具体的规则覆盖。此更改确保滚动条在需要时正确隐藏。
v1.0.0
sws 2024-09-05 16:52:54 +08:00
parent 1180942af1
commit e5b3a64639
1 changed files with 4 additions and 2 deletions

View File

@ -832,7 +832,9 @@ onBeforeMount(() => {
}
}
}
.hide-scrollbar .el-scrollbar__bar {
display: none;
.hide-scrollbar {
:deep(.el-scrollbar__bar) {
display: none !important;
}
}
</style>