1.0.0 • Published 5 years ago

tailwindcss-localized v1.0.0

Weekly downloads
4,672
License
MIT
Repository
github
Last release
5 years ago

tailwindcss-localized

Allows you to create utilities that have an effect only on certain page languages. Since content looks differently across translations, those utilities can help you tweak your site so that it always looks great.

Installation

npm i tailwindcss-localized -D

Usage

In your Tailwind config, simply require() the plugin and specify the languages you want to target in the theme object:

{
  theme: {
    languages: ['de', 'fr']
  },
  variants: {
    fontSize: ['responsive', 'localized']
  },
  plugins: [
    require('tailwindcss-localized')
  ]
}

...and you'll get similar classes:

[lang="de"] .de\:text-xs,
[lang="fr"] .fr\:text-xs {
  font-size: .75rem;
}

@media (min-width: 640px) {
  [lang="de"] .sm\:de\:text-xs,
  [lang="fr"] .sm\:fr\:text-xs {
    font-size: .75rem;
  }
}

If you want a prefix that is different from the attribute value, specify the languages as an object:

{
  theme: {
    languages: {
      german: 'de',
      french: 'fr'
    }
  }
}

...and you get:

[lang="de"] .german\:text-xs,
[lang="fr"] .french\:text-xs {
  font-size: .75rem;
}

This is useful for avoiding conflicts in responsive classes when one of your screen names matches a language code.