[v2] Fix svelte template

This commit is contained in:
Lea Anthony 2021-11-08 20:12:29 +11:00
commit 44597f2fbc
No known key found for this signature in database
GPG key ID: 33DAF7BB90A58405
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
html {
text-align: center;
color: white;
background-color: rgba(0, 0, 0, 0.5);
background-color: rgba(33, 37, 43, 0.2);
width: 100%;
height: 100%;
}

View file

@ -36,7 +36,7 @@ func main() {
Frameless: false,
StartHidden: false,
HideWindowOnClose: false,
RGBA: &options.RGBA{R: 0, G: 0, B: 0, A: 0},
RGBA: &options.RGBA{R: 33, G: 37, B: 43, A: 255},
Assets: assets,
LogLevel: logger.DEBUG,
OnStartup: app.startup,