diff --git a/Packages/Status/Sources/Status/Row/Subviews/StatusRowActionsView.swift b/Packages/Status/Sources/Status/Row/Subviews/StatusRowActionsView.swift index c8b8963e..f34f1b8f 100644 --- a/Packages/Status/Sources/Status/Row/Subviews/StatusRowActionsView.swift +++ b/Packages/Status/Sources/Status/Row/Subviews/StatusRowActionsView.swift @@ -190,11 +190,12 @@ struct StatusRowActionsView: View { action .image(dataController: statusDataController, privateBoost: privateBoost()) .imageScale(.medium) - .font(.body) + .font(.scaledBody) .fontWeight(.black) } else { action .image(dataController: statusDataController, privateBoost: privateBoost()) + .font(.scaledBody) } } .buttonStyle( @@ -210,6 +211,7 @@ struct StatusRowActionsView: View { theme: theme), !viewModel.isRemote { Text("\(count)") + .contentTransition(.numericText(value: Double(count))) .foregroundColor(Color(UIColor.secondaryLabel)) .font(.scaledFootnote) .monospacedDigit()