move price and video length to the right so they will always been in the same position

This commit is contained in:
Sean Yesmunt 2019-12-19 00:39:20 -05:00
parent 66ba3a23c2
commit 0d96830270

View file

@ -18,10 +18,10 @@ export default function FileProperties(props: Props) {
return (
<div className="file-properties">
<FilePrice hideFree uri={uri} />
<VideoDuration uri={uri} />
{isSubscribed && <Icon tooltip icon={icons.SUBSCRIBE} />}
{!claimIsMine && downloaded && <Icon tooltip icon={icons.DOWNLOAD} />}
<FilePrice hideFree uri={uri} />
<VideoDuration uri={uri} />
</div>
);
}