From b8e8b723d4a77e9f4e1b29b9ef08a890cc282e0d Mon Sep 17 00:00:00 2001 From: Martin Konicek Date: Tue, 7 Mar 2017 15:39:20 -0800 Subject: [PATCH] Website: Fix aspect ratio of icons in the showcase on homepage Summary: I ran the website locally and noticed the icons in the showcase on the homepage look squashed: ![screenshot 2017-03-07 22 28 23](https://cloud.githubusercontent.com/assets/346214/23681227/18fbec6e-0386-11e7-9658-93907cbb3337.png) Made the icons consistent with /showcase.html: https://github.com/facebook/react-native/blob/d54c7f82822f623a903858d8d686d7f14ec71aae/website/styles/_showcase.scss#L74 Closes https://github.com/facebook/react-native/pull/12773 Differential Revision: D4669767 Pulled By: hramos fbshipit-source-id: be5a758dd912083fc02c8e0b56c30c8617dcf3df --- website/styles/_showcase.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/styles/_showcase.scss b/website/styles/_showcase.scss index d97939d12..6ef3a46a7 100644 --- a/website/styles/_showcase.scss +++ b/website/styles/_showcase.scss @@ -18,7 +18,8 @@ } .home-showcase-section .showcase img { - width: 110px; + width: 100px; + height: 100px; border-radius: 20px; }