encre-css 0.21.1

A TailwindCSS-compatible utility-first CSS generation library written in Rust
Documentation
#![doc = include_str!("README.md")]
use crate::prelude::build_plugin::*;

pub(crate) const PLUGIN: StaticPlugin = Plugin::ListProperties(ListProperties {
    props: map! {
        "break-normal" => &[
            "overflow-wrap: normal;",
            "word-break: normal;",
        ],
        "break-words" => &[
            "overflow-wrap: break-word;"
        ],
        "break-all" => &[
            "word-break: break-all;"
        ],
        "break-keep" => &[
            "word-break: keep-all;"
        ],
    },
    ..ListProperties::default()
});