We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14f44d7 commit 0bd501aCopy full SHA for 0bd501a
2 files changed
assets/mango-app-icon-44.png
2.33 KB
src/app.ts
@@ -799,8 +799,8 @@ function showConnectionForm(): void {
799
refreshConnectionList();
800
801
// --- Hero banner (full-width via ScrollView Width alignment) ---
802
-const heroLogo = ImageFile('assets/mango-app-icon-128.png');
803
-heroLogo.setSize(mobile ? 40 : 56, mobile ? 40 : 56);
+const heroLogo = ImageFile(mobile ? 'assets/mango-app-icon-128.png' : 'assets/mango-app-icon-44.png');
+heroLogo.setSize(mobile ? 40 : 44, mobile ? 40 : 44);
804
805
const heroTitle = Text('Mango');
806
textSetFontSize(heroTitle, mobile ? 28 : 38);
0 commit comments