Fix overflowing green bg in setup titles

This commit is contained in:
Matt Baer 2018-11-10 21:44:41 -05:00
parent 8db0afabf6
commit 331d76f75e
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ func Configure() (*SetupData, error) {
fmt.Println("Configuration loaded.")
action = "update"
}
title := color.New(color.Bold, color.BgGreen).PrintlnFunc()
title := color.New(color.Bold, color.BgGreen).PrintFunc()
intro := color.New(color.Bold, color.FgWhite).PrintlnFunc()
fmt.Println()