style(Search): 隐藏搜索面板的滚动条以提升视觉一致性

This commit is contained in:
二叉树树
2025-12-08 18:25:29 +08:00
parent 6959755062
commit d433613643

View File

@@ -195,5 +195,11 @@ top-20 left-4 md:left-[unset] right-4 shadow-2xl rounded-2xl p-2">
.search-panel {
max-height: calc(100vh - 100px);
overflow-y: auto;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE and Edge */
}
.search-panel::-webkit-scrollbar {
display: none; /* Chrome, Safari and Opera */
}
</style>