polscm32 2 лет назад
Родитель
Сommit
a147353ab5
1 измененных файлов с 2 добавлено и 4 удалено
  1. 2 4
      FreeAPS/Sources/Modules/Home/View/Header/PumpView.swift

+ 2 - 4
FreeAPS/Sources/Modules/Home/View/Header/PumpView.swift

@@ -83,8 +83,7 @@ struct PumpView: View {
                         .frame(maxHeight: 15)
                         .foregroundColor(reservoirColor)
                     if reservoir == 0xDEAD_BEEF {
-                        Text("50+ " + NSLocalizedString("U", comment: "Insulin unit")).font(.callout)
-                            .fontWeight(.bold)
+                        Text("50+ " + NSLocalizedString("U", comment: "Insulin unit")) .font(.caption).fontWeight(.bold)
                     } else {
                         Text(
                             reservoirFormatter
@@ -117,8 +116,7 @@ struct PumpView: View {
                         .frame(maxHeight: 15)
                         .foregroundColor(timerColor)
 
-                    Text(remainingTimeString(time: date.timeIntervalSince(timerDate))).font(.callout)
-                        .fontWeight(.bold)
+                    Text(remainingTimeString(time: date.timeIntervalSince(timerDate))) .font(.caption).fontWeight(.bold)
                 }
             }
         }