1.0.0 • Published 5 years ago

@gatsby-themes/tailwind v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Gatsby Tailwind Theme

The tailwind theme sets up the configuration based on the best practices recommended by the Gatsby team

import {Card} from @gatsby-themes/tailwind;

How to use

  • Add the dependency @gatsby-themes/tailwind
  • The emotion theme will warn of the peer dependencies which also must be added to the gatsby site leveraging this theme.
yarn add `@gatsby-themes/tailwind`
  • Configure the theme in the gatsby-config.js file.
module.exports = {
	plugins: [
		{
			resolve: '@gatsby-themes/tailwind',
		}
	]
};