This commit is contained in:
Thomas Ricouard 2023-12-28 21:57:55 +01:00
parent a1093c8052
commit dcd63cfd54

View file

@ -190,11 +190,12 @@ struct StatusRowActionsView: View {
action action
.image(dataController: statusDataController, privateBoost: privateBoost()) .image(dataController: statusDataController, privateBoost: privateBoost())
.imageScale(.medium) .imageScale(.medium)
.font(.body) .font(.scaledBody)
.fontWeight(.black) .fontWeight(.black)
} else { } else {
action action
.image(dataController: statusDataController, privateBoost: privateBoost()) .image(dataController: statusDataController, privateBoost: privateBoost())
.font(.scaledBody)
} }
} }
.buttonStyle( .buttonStyle(
@ -210,6 +211,7 @@ struct StatusRowActionsView: View {
theme: theme), !viewModel.isRemote theme: theme), !viewModel.isRemote
{ {
Text("\(count)") Text("\(count)")
.contentTransition(.numericText(value: Double(count)))
.foregroundColor(Color(UIColor.secondaryLabel)) .foregroundColor(Color(UIColor.secondaryLabel))
.font(.scaledFootnote) .font(.scaledFootnote)
.monospacedDigit() .monospacedDigit()