Skip to content

Commit

Permalink
feat: increase size of timer and make it bold
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsquest committed Sep 28, 2024
1 parent 96f8eaf commit 9bcfd18
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ func makeAboutWindow(app fyne.App, buildInfo BuildInfo) fyne.Window {

func MakeClassicLayout(myPomodoro *pomodoro.Pomodoro) fyne.CanvasObject {
timer := NewTappableText(formatDuration(myPomodoro.RemainingTime), nil, nil)
timer.Label.TextSize = 42
timer.Label.TextSize = 60
timer.Label.TextStyle.Bold = true
timer.Label.Alignment = fyne.TextAlignCenter
timerPanel := timer

Expand Down

0 comments on commit 9bcfd18

Please sign in to comment.