webview / webview_deno

🌐 Deno bindings for webview, a tiny library for creating web-based desktop GUIs
https://deno.land/x/webview
MIT License
1.44k stars 75 forks source link

Change style #172

Open Mqxx opened 2 months ago

Mqxx commented 2 months ago

How can I change the style of the window or link to an external stylesheet?

Mqxx commented 2 months ago

Looks like I need to set the style directly using a style tag.

<style>
  body {
    background-color: red;
  }
</style>

Would be nice to use a <link> tag instead.