From 5a9f33669ca17a5eb45e69c3808dc34d91e00064 Mon Sep 17 00:00:00 2001 From: Arnaud Vergnet Date: Thu, 16 Apr 2020 19:28:19 +0200 Subject: [PATCH] Fixed feed item action button cropped on iOS --- src/components/Home/FeedItem.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Home/FeedItem.js b/src/components/Home/FeedItem.js index 7632b78..bd5f0a7 100644 --- a/src/components/Home/FeedItem.js +++ b/src/components/Home/FeedItem.js @@ -53,7 +53,7 @@ class FeedItem extends React.Component { const cardHeight = this.props.height - 2 * cardMargin; const imageSize = 250; const titleHeight = 80; - const actionsHeight = 48; + const actionsHeight = 60; const textHeight = hasImage ? cardHeight - titleHeight - actionsHeight - imageSize : cardHeight - titleHeight - actionsHeight;