number of items in cart is now properly aligned

This commit is contained in:
Senad Uka
2015-04-16 06:45:38 +02:00
parent 19cdca76b1
commit fc9f7496d2
3 changed files with 19 additions and 8 deletions

View File

@@ -34,10 +34,8 @@ var SingleItem = React.createClass({
<img className="img-responsive" src={firstImage.resized_url} alt="product image" />
<div>
<div>
<p>{ this.props.item.get('brand') ? this.props.item.get('brand').name : '' }{ this.props.item.get('name') }</p>
<h4> { this.props.item.get('list_price') } KM </h4>
<p>{ this.props.item.get('brand') ? this.props.item.get('brand').name : '' }{ this.props.item.get('name') }</p>
<h4>{ this.props.item.get('list_price') } KM </h4>
</div>
</div>
</div>