chore: normalize nested struct defininition style

Christian Rocha created

Change summary

ui/styles/styles.go | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

Detailed changes

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
 		}
 	}