This commit is contained in:
Trey t
2022-02-24 20:31:20 -06:00
parent 7ecd104871
commit 0c6c9ef511

View File

@@ -147,12 +147,12 @@ extension HomeViewTwo {
LazyVGrid(columns: columns, spacing: 15) {
ForEach(entries, id: \.self) { entry in
Circle()
.foregroundColor(moodTint.color(forMood: entry.mood))
.foregroundColor(entry.mood == .placeholder ? .clear : moodTint.color(forMood: entry.mood))
.frame(minHeight: 5, idealHeight: 20, maxHeight: 50, alignment: .center)
}
}
}
.contentShape(Rectangle())
.contentShape(Rectangle())
.onTapGesture{
let deailView = MonthDetailView(monthInt: month,
yearInt: year,