encre-css 0.21.0

A TailwindCSS-compatible utility-first CSS generation library written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("README.md")]
#![doc(alias = "typography")]
use crate::prelude::build_plugin::*;

pub(crate) const PLUGIN: StaticPlugin = Plugin::ListValues(ListValues {
    prop: SingleProp("white-space"),
    values: map! {
        "whitespace-normal" => "normal",
        "whitespace-nowrap" => "nowrap",
        "whitespace-pre" => "pre",
        "whitespace-pre-line" => "pre-line",
        "whitespace-pre-wrap" => "pre-wrap",
        "whitespace-break-spaces" => "break-spaces",
    },
    ..ListValues::default()
});