From 82a42ec40a72167e8bf1e01ee941352855bdd950 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Thu, 23 Apr 2026 08:33:30 +0800 Subject: [PATCH] Make start button more conspicuous on iOS --- .../Views/Dashboard/Components/StartStopButton.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/ApplicationLibrary/Views/Dashboard/Components/StartStopButton.swift b/ApplicationLibrary/Views/Dashboard/Components/StartStopButton.swift index 334274e..f41efeb 100644 --- a/ApplicationLibrary/Views/Dashboard/Components/StartStopButton.swift +++ b/ApplicationLibrary/Views/Dashboard/Components/StartStopButton.swift @@ -63,6 +63,7 @@ public struct StartStopButton: View { if !profile.status.isConnected { Label("Start", systemImage: "play.fill") + .padding(.horizontal, 12) } else { Label("Stop", systemImage: "stop.fill") }