fix: 隐藏侧边栏菜单滚动条

- tailwind.config 添加 scrollbar-hide 工具类插件
- SidebarNav nav 元素添加 scrollbar-hide class
This commit is contained in:
freedakgmail
2026-08-17 20:02:48 +08:00
parent eaa7ec5518
commit 95567c9cc4
2 changed files with 14 additions and 2 deletions
+13 -1
View File
@@ -1,4 +1,5 @@
import typography from '@tailwindcss/typography'
import plugin from 'tailwindcss/plugin'
/** @type {import('tailwindcss').Config} */
export default {
@@ -85,5 +86,16 @@ export default {
},
},
},
plugins: [typography],
plugins: [
typography,
plugin(({ addUtilities }) => {
addUtilities({
'.scrollbar-hide': {
'scrollbar-width': 'none',
'-ms-overflow-style': 'none',
'&::-webkit-scrollbar': { display: 'none' },
},
})
}),
],
}