diff --git a/v2/internal/templates/templates/vanilla/frontend/main.css b/v2/internal/templates/templates/vanilla/frontend/main.css index 498037ee4..2ddc5f885 100644 --- a/v2/internal/templates/templates/vanilla/frontend/main.css +++ b/v2/internal/templates/templates/vanilla/frontend/main.css @@ -6,19 +6,19 @@ html { body { color: white; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; margin: 0; } -#input { - margin: 3rem; +#result { + margin-top: 1rem; } #logo { width: 50%; height: 50%; - margin-top: 50px; - margin-left: auto; - margin-right: auto; + padding-top: 50px; + margin: auto; display: block; background-position: center; background-repeat: no-repeat; diff --git a/v2/internal/templates/templates/vanilla/main.tmpl.go b/v2/internal/templates/templates/vanilla/main.tmpl.go index 3d66b2cb4..85277542e 100644 --- a/v2/internal/templates/templates/vanilla/main.tmpl.go +++ b/v2/internal/templates/templates/vanilla/main.tmpl.go @@ -16,11 +16,10 @@ func main() { app := NewBasic() err := wails.Run(&options.App{ - Title: "{{.ProjectName}}", - Width: 800, - Height: 600, - MinWidth: 800, - MinHeight: 600, + Title: "{{.ProjectName}}", + Width: 800, + Height: 600, + DisableResize: true, Mac: &mac.Options{ WebviewIsTransparent: true, WindowBackgroundIsTranslucent: true,