Add a custom Tailwind CSS class for reusability and speed

Published at (last updated at ) Leave your comment

This is another quick article about something I use in every (Rails) app.

I often apply a few Tailwind CSS utility-classes to create smooth transitions for hover- or active-states. I use this one so often that I create a custom smoothTransition class.

So instead of writing transition ease-in-out duration-200 I write smoothTransition. Much smoother!

Typically you’d write a CSS selector within the @layer utilities directive, like so:

@layer utilities {
  .smoothTransition {
    transition-property: all;
    transition-timing-function: ease-in-out;
    transition-duration: 200ms;
  }
}

And this would certainly work just fine. But Tailwind CSS allows you to write custom styles using its plugin system. Amongst other things, this allows you to use the custom-class with any of the available modifiers.

Within your tailwindcss.config.js add the following:

// tailwindcss.config.js
const plugin = require('tailwindcss/plugin');

module.exports = plugin(function({ addUtilities }) {
  // …

  addUtilities({
    '.smoothTransition': {
      'transition-property': 'all',
      'transition-timing-function': 'ease-in-out',
      'transition-duration': '200ms',
    },
  })
})

If you are using Tailwind CSS v4+, you don’t need/have a tailwind.config.js anymore. Create a custom utility, like so:

@utility tab-4 {
  transition-property: all;
  transition-timing-function: ease-in-out;
  transition-duration: 200ms;
}

It is much like the initial code shown above!

This will add smoothTransition as an utility you can use anywhere. Tailwind CSS’ plugin system allows for many more options from the directives you want to use (eg. addBase or addComponent), but also supply a set of predefined values to a utility.

That’s all beyond the scope of this quick-tip, but do explore the docs about plugins to learn more.

💬 Over to you…

What did you like about this article? Learned something knew? Found something is missing or even broken? 🫣 Let me (and others) know!

Comments are powered by Chirp Form

More articles like this on modern Rails & frontend? And the odd sneak peek?
JavaScript for Rails Developers
Make JS your 2nd favorite language