From 6f5812b4ced9e8ba2295a732ce0e60f3e0c1d037 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 18 Jul 2022 20:48:57 -0700 Subject: [PATCH] chore: normalize nested struct defininition style --- ui/styles/styles.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ui/styles/styles.go b/ui/styles/styles.go index 182b75f202c10b4b9c3ad7f46659ac7dc2987f3f..9416d125e436055aebc09bf61b7d6c03f861572e 100644 --- a/ui/styles/styles.go +++ b/ui/styles/styles.go @@ -23,17 +23,17 @@ type Styles struct { RepoSelector struct { Normal struct { - Base, - Title, - Desc, - Command, + Base lipgloss.Style + Title lipgloss.Style + Desc lipgloss.Style + Command lipgloss.Style Updated lipgloss.Style } Active struct { - Base, - Title, - Desc, - Command, + Base lipgloss.Style + Title lipgloss.Style + Desc lipgloss.Style + Command lipgloss.Style Updated lipgloss.Style } }