In Vite, custom CSS classes can be added to the app.css file or a separate CSS file can be created and imported into the app.js file.
To add custom CSS classes to the app.css file, simply add them below the @tailwind directives.
To create a separate CSS file, create a new file in the resources/css directory (e.g. custom.css) and add the custom classes to it. Then, import the file into the app.js file using the import statement:
import './css/custom.css';
Make sure to run npm run dev or npm run watch to compile the changes.