Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 606 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 606 Bytes

Tailwind Processor

codecov

This is a Python package that processes Tailwind CSS classes into a single raw CSS string. It's super modular and simple, you can just copy the class directly and use it in your code. Just make sure to install pytailwindcss first.

Installation

pip install tailwind-processor

Usage

from tailwind_processor import TailwindProcessor

tp = TailwindProcessor()
tp.process(["text-red-500", "h-dvh"])