Skip to content

Commit bbd719a

Browse files
committed
fix: chevron style
1 parent 37697b4 commit bbd719a

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

Bitkit/Components/Activity/DateRangeSelectorSheet.swift

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -74,24 +74,22 @@ struct DateRangeSelectorSheet: View {
7474
VStack(alignment: .leading, spacing: 16) {
7575
// Month navigation
7676
HStack {
77+
Text(monthYearString)
78+
.font(.custom(Fonts.semiBold, size: 17))
79+
.foregroundColor(.white)
80+
Spacer()
81+
7782
Button(action: previousMonth) {
7883
Image(systemName: "chevron.left")
79-
.foregroundColor(.white)
84+
.foregroundColor(.brandAccent)
8085
.frame(width: 44, height: 44)
8186
}
87+
.padding(.leading, 8)
8288
.accessibilityIdentifier("PrevMonth")
8389

84-
Spacer()
85-
86-
Text(monthYearString)
87-
.font(.custom(Fonts.semiBold, size: 17))
88-
.foregroundColor(.white)
89-
90-
Spacer()
91-
9290
Button(action: nextMonth) {
9391
Image(systemName: "chevron.right")
94-
.foregroundColor(.white)
92+
.foregroundColor(.brandAccent)
9593
.frame(width: 44, height: 44)
9694
}
9795
.accessibilityIdentifier("NextMonth")
@@ -293,7 +291,7 @@ struct CalendarDayView: View {
293291
// Day number
294292
Text(dayNumber)
295293
.font(.custom(Fonts.regular, size: 16))
296-
.foregroundColor(.white)
294+
.foregroundColor(isStartDate || isEndDate ? Color.brandAccent : Color.white)
297295

298296
// Today indicator
299297
if isToday && !isSelected {

0 commit comments

Comments
 (0)