#Cannot apply utility classes

4 messages · Page 1 of 1 (latest)

cinder gale
#

I think this error occured because you're encountering is related to TailwindCSS. Specifically, the error message:
Cannot apply unknown utility class: remove-scrollbar
indicates that Tailwind CSS is attempting to use a utility class called remove-scrollbar, but it doesn't recognize it

tender fossil
cinder gale
#

okay

#

Custom utility class not defined: If you have defined a custom utility class (remove-scrollbar) in your Tailwind configuration, it might not be properly registered. Ensure that it's correctly defined in the tailwind.config.js file.

Plugin missing: If you're using a plugin to define remove-scrollbar, such as @tailwindcss/forms or another custom plugin, it might not be installed or configured properly. Double-check your tailwind.config.js and make sure all required plugins are installed.

Incorrect class name: Ensure that the class remove-scrollbar exists and is typed correctly. It could be a typo or a class that was renamed or deprecated.

This is list of reason