From 76820755e3772fb3880fc6e4b336da11bc438622 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin Date: Mon, 16 Dec 2024 11:57:32 +0000 Subject: [PATCH] color, size --- apps/ios/Shared/Views/ChatList/ChatListNavLink.swift | 3 +-- apps/ios/Shared/Views/ChatList/ChatListView.swift | 3 --- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift b/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift index 86c056e7c6..ac730e1ab5 100644 --- a/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift +++ b/apps/ios/Shared/Views/ChatList/ChatListNavLink.swift @@ -329,7 +329,7 @@ struct ChatListNavLink: View { } label: { SwipeLabel(NSLocalizedString("List", comment: "swipe action"), systemImage: "tag.fill", inverted: oneHandUI) } - .tint(Color.brown) + .tint(.mint) } private func setTagChatSheet(_ chat: Chat) { @@ -387,7 +387,6 @@ struct ChatListNavLink: View { } label: { SwipeLabel(NSLocalizedString("More", comment: "swipe action"), systemImage: "ellipsis", inverted: oneHandUI) } - .tint(Color.gray) } private func clearNoteFolderButton() -> some View { diff --git a/apps/ios/Shared/Views/ChatList/ChatListView.swift b/apps/ios/Shared/Views/ChatList/ChatListView.swift index c31385e5a9..d13e573fac 100644 --- a/apps/ios/Shared/Views/ChatList/ChatListView.swift +++ b/apps/ios/Shared/Views/ChatList/ChatListView.swift @@ -814,9 +814,6 @@ struct ChatTagsView: View { } } label: { Image(systemName: selectedPresetTag?.getIcon(active: true) ?? "list.bullet") - .resizable() - .scaledToFit() - .frame(width: 22, height: 20) .foregroundColor(color) } }