From 348b3590b08b355ff4c0dfb7d4b24a2187a87d02 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 14 Aug 2018 21:10:52 +1000 Subject: [PATCH] Fixed brand logo resizing transition. --- public/page/home/sections/PlatformsSection.jsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/public/page/home/sections/PlatformsSection.jsx b/public/page/home/sections/PlatformsSection.jsx index 6841949..8f8c0ec 100644 --- a/public/page/home/sections/PlatformsSection.jsx +++ b/public/page/home/sections/PlatformsSection.jsx @@ -46,10 +46,13 @@ const Platform = (props) => { children = image; } + //Wrap in a div and a fader. Div is to help with random transitions on resizing. return ( - - {children} - +
+ + {children} + +
); };