LandingPage: tighten space between status icon and text

Tighten the space between the status icon and the status
text.

Fixes #595
This commit is contained in:
Chloe Kaubisch 2022-03-31 15:59:52 +02:00 committed by Sanne Raymaekers
parent 5643a142d1
commit 760a4366e9

View file

@ -57,7 +57,7 @@ const ImageBuildStatus = (props) => {
{messages[props.status] &&
messages[props.status].map((message, key) => (
<Flex key={ key } className="pf-u-align-items-baseline pf-m-nowrap">
<div>{message.icon}</div>
<div className="pf-u-mr-sm">{message.icon}</div>
<small>{message.text}</small>
</Flex>
))