From 2576731c4e7ebee132b084e4d7ba2b2441cba2da Mon Sep 17 00:00:00 2001 From: Stefan Claas Date: Wed, 3 Sep 2025 19:40:25 +0200 Subject: Add files via upload --- yubicrypt.go | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/yubicrypt.go b/yubicrypt.go index 2c329f2..44d32ae 100644 --- a/yubicrypt.go +++ b/yubicrypt.go @@ -158,10 +158,14 @@ func (g *GUI) createMainUI() fyne.CanvasObject { ) clearBtn := widget.NewButtonWithIcon("Clear", theme.DeleteIcon(), g.onClear) - pinContainer := container.NewHBox( - widget.NewLabel("PIN:"), - g.pinEntry, - clearBtn, + pinContainer := container.NewVBox( + container.NewHBox( + layout.NewSpacer(), + widget.NewLabel("PIN:"), + g.pinEntry, + clearBtn, + layout.NewSpacer(), + ), ) mainContainer := container.NewBorder( -- cgit v1.2.3