style(global): 添加全局滚动条隐藏样式
- 新增 scrollbar-hide.css 隐藏所有滚动条 - 支持 Firefox (scrollbar-width)、Chrome/Safari (webkit)、IE/Edge - 保留滚动功能,仅隐藏滚动条视觉元素 - 在 index.js 中全局导入 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
9
src/styles/scrollbar-hide.css
Normal file
9
src/styles/scrollbar-hide.css
Normal file
@@ -0,0 +1,9 @@
|
||||
/* 全局隐藏滚动条(保持滚动功能) */
|
||||
* {
|
||||
scrollbar-width: none; /* Firefox */
|
||||
-ms-overflow-style: none; /* IE/Edge */
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar {
|
||||
display: none; /* Chrome, Safari, Opera */
|
||||
}
|
||||
Reference in New Issue
Block a user