fix: 隐藏侧边栏菜单滚动条
- tailwind.config 添加 scrollbar-hide 工具类插件 - SidebarNav nav 元素添加 scrollbar-hide class
This commit is contained in:
@@ -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' },
|
||||
},
|
||||
})
|
||||
}),
|
||||
],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user