diff options
-rw-r--r-- | go/main.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ func main() { go func() { w := app.NewWindow( app.Title("LimoX"), - app.Size(unit.Dp(600), unit.Dp(800)), + app.Size(unit.Dp(400), unit.Dp(600)), ) err := run(w) if err != nil { @@ -41,7 +41,7 @@ func run(w *app.Window) error { case system.FrameEvent: gtx := layout.NewContext(&ops, e) - title := material.H1(th, "disconnected") + title := material.H3(th, "disconnected") maroon := color.NRGBA{R: 0, G: 212, B: 0, A: 255} title.Color = maroon title.Alignment = text.Middle |