@@ -139,9 +139,9 @@ struct PostView: View {
139139 } ,
140140 label: {
141141 Image ( systemName: " ellipsis " )
142- . font ( . system( size: 18 ) )
142+ . font ( . system( size: 22 ) )
143143 . frame ( width: 48 , height: 40 )
144- . background ( RoundedRectangle ( cornerRadius: 12 ) . fill ( . gray. opacity ( 0.08 ) ) )
144+ . background ( RoundedRectangle ( cornerRadius: 12 ) . fill ( . gray. opacity ( 0.15 ) ) )
145145 . contentShape ( RoundedRectangle ( cornerRadius: 12 ) )
146146 }
147147 )
@@ -152,9 +152,9 @@ struct PostView: View {
152152 } ) {
153153 ZStack {
154154 Image ( systemName: " bubble.middle.bottom " )
155- . font ( . system( size: 18 ) )
155+ . font ( . system( size: 22 ) )
156156 . frame ( width: 48 , height: 40 )
157- . background ( RoundedRectangle ( cornerRadius: 12 ) . fill ( . gray. opacity ( 0.08 ) ) )
157+ . background ( RoundedRectangle ( cornerRadius: 12 ) . fill ( . gray. opacity ( 0.15 ) ) )
158158 . contentShape ( RoundedRectangle ( cornerRadius: 12 ) )
159159
160160 if post. commentCount > 0 {
@@ -175,9 +175,9 @@ struct PostView: View {
175175 PostHogSDK . shared. capture ( " post_like " )
176176 } ) {
177177 Image ( systemName: post. isLiked ? " heart.fill " : " heart " )
178- . font ( . system( size: 18 ) )
178+ . font ( . system( size: 22 ) )
179179 . frame ( width: 48 , height: 40 )
180- . background ( RoundedRectangle ( cornerRadius: 12 ) . fill ( . gray. opacity ( 0.08 ) ) )
180+ . background ( RoundedRectangle ( cornerRadius: 12 ) . fill ( . gray. opacity ( 0.15 ) ) )
181181 . contentShape ( RoundedRectangle ( cornerRadius: 12 ) )
182182 }
183183 . buttonStyle ( . plain)
0 commit comments