This commit is contained in:
Trey t
2022-02-04 17:10:58 -06:00
parent b4636ebd2b
commit 1671481623

View File

@@ -48,9 +48,9 @@ struct FilterView: View {
.padding([.leading, .trailing, .top]) .padding([.leading, .trailing, .top])
statsView statsView
.frame(minWidth: 0, maxWidth: .infinity, minHeight: 120, maxHeight: 120) .frame(minWidth: 0, maxWidth: .infinity, minHeight: 90, maxHeight: 90)
.cornerRadius(10) .cornerRadius(10)
.padding([.leading, .trailing]) .padding()
Text(String(localized: "filter_view_total") + ": \(self.viewModel.numberOfRatings)") Text(String(localized: "filter_view_total") + ": \(self.viewModel.numberOfRatings)")
.font(.title2) .font(.title2)
@@ -113,7 +113,6 @@ struct FilterView: View {
} }
} }
.cornerRadius(10) .cornerRadius(10)
.padding()
} }
private var filterView: some View { private var filterView: some View {