UI changes (now responsive) && fixed YT recommendations method
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
const defaultTheme = require('tailwindcss/defaultTheme')
|
||||
const plugin = require('tailwindcss/plugin')
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
@@ -17,5 +18,19 @@ export default {
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
plugins: [
|
||||
plugin(function ({ addUtilities }) {
|
||||
addUtilities({
|
||||
/* Hide scrollbar for Chrome, Safari and Opera */
|
||||
'.no-scrollbar::-webkit-scrollbar': {
|
||||
display: 'none',
|
||||
},
|
||||
/* Hide scrollbar for IE, Edge and Firefox */
|
||||
'.no-scrollbar': {
|
||||
'-ms-overflow-style': 'none' /* IE and Edge */,
|
||||
'scrollbar-width': 'none' /* Firefox */,
|
||||
},
|
||||
})
|
||||
}),
|
||||
],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user