Tailwind CSS
Enable Tailwind CDN β no Node.js required:
python
app = Sistine()
app.use_tailwind()Usage Example
python
@app.sistine("/")
def index():
return str(
el.button(cls="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded")(
"Tailwind Button"
)
)