mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-09-03 00:23:49 +00:00
Fix #1789
This commit is contained in:
parent
a1093c8052
commit
dcd63cfd54
1 changed files with 3 additions and 1 deletions
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue