#tailwind #stylist #yew #css #stylist-rs

macro stylist-tailwind-macros

Adds a bunch of tailwind classes for stylist-rs to quickly add css to yew applications

1 unstable release

0.2.0 Apr 16, 2024

#5 in #stylist

Download history 100/week @ 2024-04-10 43/week @ 2024-04-17

143 downloads per month
Used in stylist-tailwind

MIT license

725KB
11K SLoC

Stylist tailwind contains a bunch of tailwind classes that you can use in Stylist.

Install

Add the following to your Cargo.toml:

stylist-tailwind = "0.2.0"

Usage

For detailed usage, please see documentation.

use yew::prelude::*;
use stylist::Style;

#[styled_component]
fn MyStyledComponent() -> Html {
    html! {<div class={Style::new(tw!("w-full px-4 my-8")).unwrap()}>{"Hello World!"}</div>}
}

Dependencies

~7–19MB
~299K SLoC