mirror of
https://github.com/neosubhamoy/neosubhamoy-portfolio.git
synced 2025-12-20 01:09:35 +05:30
(refactor/fixed): updated featured projects fething method and fixed no-scollbar tailwind class missing in production
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
|
||||
const plugin = require('tailwindcss/plugin')
|
||||
|
||||
module.exports = {
|
||||
content: ["./htdocs/**/*.{php,html,js}"],
|
||||
theme: {
|
||||
@@ -26,6 +29,18 @@ module.exports = {
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
plugins: [
|
||||
plugin(function({ addUtilities }) {
|
||||
addUtilities({
|
||||
'.no-scrollbar::-webkit-scrollbar': {
|
||||
'display': 'none',
|
||||
},
|
||||
'.no-scrollbar': {
|
||||
'-ms-overflow-style': 'none',
|
||||
'scrollbar-width': 'none',
|
||||
}
|
||||
})
|
||||
})
|
||||
],
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user