Remove tailwind.css
article thumbnail

CSS for the Minimalist: Exploring Classless CSS

Noupe

While newer approaches, like Tailwind.CSS, attempt to minimize class bloat by integrating deeper into the developer toolchain, the learning curve can be steep. Recently at Solitaired , we’ve been exploring the direct opposite.

Theme 145
article thumbnail

How To Implement Search Functionality In Your Nuxt App Using Algolia InstantSearch

Smashing Magazine Graphics

This will create a minimal tailwind.config.js file at the root of our project: //tailwind.config.js module.exports = { purge: [], darkMode: false, // or 'media' or 'class' theme: { extend: {}, }, variants: { extend: {}, }, plugins: [], }. The @/ tells Nuxt that it’s an absolute path to look for the file from the root directory.

Templates 106