pub fn set_global_css(style_data: &str)
Sets a custom global stylesheet.
134fn main() { 135 let app = RelmApp::new("relm4.example.tracker"); 136 relm4::set_global_css(".identical { background: #00ad5c; }"); 137 138 app.run::<AppModel>(()); 139}