Skip to content

Commit

Permalink
remove space between rows to match UI of other widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
aapis committed Oct 28, 2024
1 parent 838194d commit 11e5e2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct TodayInHistoryWidget: View {
VStack(alignment: .leading, spacing: 0) {
UI.Sidebar.Title(text: self.title)
Divider()
VStack(alignment: .leading, spacing: 1) {
VStack(alignment: .leading, spacing: 0) {
ForEach(self.todayInHistory, id: \.year) { day in day }
}
}
Expand Down

0 comments on commit 11e5e2a

Please sign in to comment.