diff --git a/examples/tour/index.html b/examples/tour/index.html index c64af912..09d03367 100644 --- a/examples/tour/index.html +++ b/examples/tour/index.html @@ -1,12 +1,12 @@ - + Tour - Iced - + diff --git a/winit/src/application.rs b/winit/src/application.rs index 0c596b3f..1fd51d82 100644 --- a/winit/src/application.rs +++ b/winit/src/application.rs @@ -159,6 +159,10 @@ where use winit::platform::web::WindowExtWebSys; let canvas = window.canvas().expect("Get window canvas"); + let _ = canvas.set_attribute( + "style", + "display: block; width: 100%; height: 100%", + ); let window = web_sys::window().unwrap(); let document = window.document().unwrap();