Skip to main content

stylesheet

Function stylesheet 

Source
pub fn stylesheet(opts: &Emit) -> String
Expand description

The whole phase-A stylesheet: properties and rules, with a generated-file banner.

Examples found in repository?
examples/dump.rs (line 4)
1fn main() {
2    print!(
3        "{}",
4        makeover_webview::stylesheet(&makeover_webview::Emit::default())
5    );
6}