From 94d0e99cbfbd23fdfbe90f5d7852732b6ab0ebf2 Mon Sep 17 00:00:00 2001 From: Tienson Qin Date: Tue, 23 Sep 2025 21:07:05 +0800 Subject: [PATCH] enhance: larger logo on ios widget --- ios/App/shortcuts/shortcuts.swift | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ios/App/shortcuts/shortcuts.swift b/ios/App/shortcuts/shortcuts.swift index 601bcc298c..62c4f23888 100644 --- a/ios/App/shortcuts/shortcuts.swift +++ b/ios/App/shortcuts/shortcuts.swift @@ -39,19 +39,19 @@ struct ShortcutsEntryView: View { VStack(alignment: .leading, spacing: 0) { // Top heading Link(destination: URL(string: "logseq://mobile")!) { - HStack(spacing: 8) { + HStack(alignment: .top, spacing: 8) { Text(weekday) .font(.subheadline) .bold() .foregroundColor(.white.opacity(0.5)) - + .padding(.top, 4) Spacer() Image("LogseqLogo") .resizable() .scaledToFit() - .frame(width: 20, height: 20) + .frame(width: 30, height: 30) } } @@ -60,7 +60,6 @@ struct ShortcutsEntryView: View { .font(.headline) .bold() .foregroundColor(.white.opacity(0.8)) - .padding(.top, 8) Spacer(minLength: 0) @@ -90,7 +89,7 @@ struct ShortcutsEntryView: View { } } .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading) - .padding(-3) + .padding(-8) } } }