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:

d54c7f8282/website/styles/_showcase.scss (L74)
Closes https://github.com/facebook/react-native/pull/12773

Differential Revision: D4669767

Pulled By: hramos

fbshipit-source-id: be5a758dd912083fc02c8e0b56c30c8617dcf3df
This commit is contained in:
Martin Konicek 2017-03-07 15:39:20 -08:00 committed by Facebook Github Bot
parent cb3a439d17
commit b8e8b723d4
1 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,8 @@
}
.home-showcase-section .showcase img {
width: 110px;
width: 100px;
height: 100px;
border-radius: 20px;
}