From b4efe43be945cfedf7c0e301da72330d0f651645 Mon Sep 17 00:00:00 2001 From: Euigyom Kim Date: Sun, 21 Apr 2024 08:49:21 +0900 Subject: [PATCH] Fix design on emoji section header --- .../StatusKit/Editor/Components/CustomEmojisView.swift | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Packages/StatusKit/Sources/StatusKit/Editor/Components/CustomEmojisView.swift b/Packages/StatusKit/Sources/StatusKit/Editor/Components/CustomEmojisView.swift index f70db084f..4f654b9b1 100644 --- a/Packages/StatusKit/Sources/StatusKit/Editor/Components/CustomEmojisView.swift +++ b/Packages/StatusKit/Sources/StatusKit/Editor/Components/CustomEmojisView.swift @@ -39,9 +39,14 @@ extension StatusEditor { viewModel.insertStatusText(text: " :\(emoji.shortcode): ") } } - .padding(.horizontal, 8) + .padding(.horizontal, 16) } header: { Text(container.categoryName) + .font(.scaledHeadline) + .bold() + .foregroundStyle(Color.secondary) + .frame(maxWidth: .infinity, alignment: .leading) + .padding(.horizontal, 16) } } }