Browse Source

Fixed feed item action button cropped on iOS

Arnaud Vergnet 4 years ago
parent
commit
5a9f33669c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/components/Home/FeedItem.js

+ 1
- 1
src/components/Home/FeedItem.js View File

@@ -53,7 +53,7 @@ class FeedItem extends React.Component<Props> {
53 53
         const cardHeight = this.props.height - 2 * cardMargin;
54 54
         const imageSize = 250;
55 55
         const titleHeight = 80;
56
-        const actionsHeight = 48;
56
+        const actionsHeight = 60;
57 57
         const textHeight = hasImage
58 58
             ? cardHeight - titleHeight - actionsHeight - imageSize
59 59
             : cardHeight - titleHeight - actionsHeight;

Loading…
Cancel
Save