css_block!() { /* proc-macro */ }
Expand description

Constructs a CSS block that can be manually pushed into existing Css styles instance.

use vertigo::{css_fn, css_block};

css_fn! { green, "
    color: green;
" }

let mut green_style = green();

green_style.push_str(
    css_block! { "
        font-style: italic;
   " }
);