chore: formatting

This commit is contained in:
cha0s 2019-04-23 03:42:35 -05:00
parent 41bf8f606f
commit 9ea6680629

View File

@ -26,9 +26,9 @@ const decorate = compose(
.status .health-inner {
box-shadow:
-.5px -.5px 0 rgba(0, 0, 0, 1),
.5px .5px 0 rgba(0, 0, 0, 1),
-.5px .5px 0 rgba(0, 0, 0, 1),
.5px -.5px 0 rgba(0, 0, 0, 1)
.5px .5px 0 rgba(0, 0, 0, 1),
-.5px .5px 0 rgba(0, 0, 0, 1),
.5px -.5px 0 rgba(0, 0, 0, 1)
;
display: inline-block;
padding: 1px 3px;
@ -78,7 +78,13 @@ const QuickStatusComponent = ({app}) => {
backgroundImage: `linear-gradient(${gradient.join(', ')})`,
backgroundSize: `${width * 100}% 100%`,
}}>
<span className="life">{life}</span>/<span className="max-life">{maxLife}</span>
<span className="life">
{life}
</span>
/
<span className="max-life">
{maxLife}
</span>
</div>
</div>
</div>;