From b7c28ab1f28f1b2e9146b514ef6dfe75ee3bff5f Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Mon, 27 Sep 2021 19:59:00 +1000 Subject: [PATCH] [v2] Misc Fixes --- v2/cmd/wails/internal/commands/dev/dev.go | 1 - .../templates/templates/svelte/frontend/src/global.css | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/v2/cmd/wails/internal/commands/dev/dev.go b/v2/cmd/wails/internal/commands/dev/dev.go index 6e87ef74d..f22d2a095 100644 --- a/v2/cmd/wails/internal/commands/dev/dev.go +++ b/v2/cmd/wails/internal/commands/dev/dev.go @@ -234,7 +234,6 @@ func AddSubcommand(app *clir.Cli, w io.Writer) error { if strings.HasPrefix(dir, ".") { return } - println("Watching", dir) err = watcher.Add(dir) if err != nil { logger.Fatal(err.Error()) diff --git a/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/frontend/src/global.css b/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/frontend/src/global.css index 75d6a4c49..7c56cb579 100644 --- a/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/frontend/src/global.css +++ b/v2/cmd/wails/internal/commands/initialise/templates/templates/svelte/frontend/src/global.css @@ -2,7 +2,7 @@ html { text-align: center; color: white; - background-color: rgba(0, 0, 0, 0); + background-color: rgba(0, 0, 0, 255); width: 100%; height: 100%; }