mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
Fix overflowing green bg in setup titles
This commit is contained in:
parent
8db0afabf6
commit
331d76f75e
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue