Tech Blog
AnyMind Group
Aug 5, 2021
[Tech Blog] Introduce Tailwind and Twin
Hello, I'm Vuong, front end developer at AnyMind Group. In this article, I’d like to introduce how we combine Tailwindcss and Css-in-js using Twin in our latest Nextjs project called Popbox.
Tailwind CSS
A utility-first CSS framework packed with classes like flex, pt-4, text-center and rotate-90 that can be composed to build any design, directly in your markup.
It helps in building complex components from a constrained set of primitive utilities.
Styling a button by default:
<button>Save</button>
button {
padding: 32px;