In this video, we look at the right way to add Tailwind CSS to a Gatsby site. First we install Tailwind CSS and make a button with its utility clas...
For further actions, you may consider blocking this person and/or reporting abuse
Nice article and video! Could you make one to use with styled-components?
you can write the same way the styled component just like this with emotion
import tw, { styled } from "twin.macro"
export const Hero = tw.div
w-full
bg-center
h-full
bg-cover
and mixed
export const Title1 = styled.div
text-silver text-center text-4xl font-bold mt-3 mb-3${tw
}
font-family:'Fondamento';
color: ${(props) => (props.color ? "#e0e2db" : "text-gray-300")};
image
+1 -- I think most people would get more benefit from this if you used styled-components.
Thanks for this.
Question: is the "sizes" object also being Purged?
I use gatsby-plugin-purgecss to purge all
and in to the tailwind.config.js use this
Great question, I'm actually not sure lol. I'd have to test that out when I get some time. If anyone else knows please enlighten us!