Fixed brand logo resizing transition.

This commit is contained in:
2018-08-14 21:10:52 +10:00
parent 2235fe3983
commit 348b3590b0

View File

@ -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 (
<ElementScrollFader from={props.from} className="p-home-page__brands-brand">
{children}
</ElementScrollFader>
<div className="p-home-page__brands-brand">
<ElementScrollFader from={props.from}>
{children}
</ElementScrollFader>
</div>
);
};