Crates.io | dioxus-tailwindcss |
lib.rs | dioxus-tailwindcss |
version | 0.7.0 |
source | src |
created_at | 2023-02-25 03:13:31.475573 |
updated_at | 2024-04-09 12:15:23.261654 |
description | Dioxus tailwindcss |
homepage | https://github.com/edger-dev/dioxus-class |
repository | https://github.com/edger-dev/dioxus-class |
max_upload_size | |
id | 794126 |
size | 68,300 |
Due to rust's rule on constant names, there are some difference from tailwindcss.
tailwindcss | dioxus-tailwindcss |
---|---|
static |
static_ |
2xl: |
xxl() and _2xl() |
fraction e.g. -1/2 |
_1__2 |
.5 |
_half |
Code | Documentation | Notes |
---|---|---|
modifier.rs | link | check the #pseudo-class-reference part for complete list |
responsive.rs | link | 2xl is not a valid rust function name, define both xxl and _2xl for it |
dark_mode.rs | link | use dark_ instead of dark |
layout.rs | link Layout | use static_ instead of static |
flex.rs | link Flexbox & Grid | |
spacing.rs | link Spacing |
| sizing.rs | link Sizing | | | typography.rs | link Typography | | | backgrounds.rs | link Backgrounds | | | borders.rs | link Borders | | | effects.rs | link Effects | | | filters.rs | link Filters | | | tables.rs | link Tables | | | tansitions.rs | link Transitions & Animation | | | transforms.rs | link Transforms | | | interactivity.rs | link Interactivity | | | svg.rs | link SVG | | | accessibility.rs | link Accessibility | |
Since tailwindcss need to get all used values, when using class!
, the default build process is not working.
Check BUILD.md for how to handle this process.