Fix margin in token description

This commit is contained in:
Grégoire Delattre 2019-05-28 22:46:54 +02:00
parent a259226273
commit 257fc1ab9e

View File

@ -43,7 +43,7 @@ const Token = (props) => {
<div className="card-header"> <div className="card-header">
<h4> <h4>
<Logo {...ua} /> <Logo {...ua} />
<span>{props.data.get("description")}</span> <span className="ml-3">{props.data.get("description")}</span>
<Actions {...props} /> <Actions {...props} />
</h4> </h4>
</div> </div>