Skip to content

Commit

Permalink
minor styling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed May 9, 2020
1 parent 65a2f8a commit d658416
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions shop/templates/shop/cart/editable.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

<div class="shop-cart" shop-cart="{% url 'shop:cart-list' %}">
{% block shop-cart-head %}
<div class="row lead text-muted" ng-if="cart.num_items==0">
<div class="row" ng-if="cart.num_items==0">
<div class="col">
{% trans "There are no items in the cart." context "cart" %}
<p class="lead text-muted">{% trans "There are no items in the cart." context "cart" %}</p>
</div>
</div>
{% endblock shop-cart-head %}
Expand Down
4 changes: 2 additions & 2 deletions shop/templates/shop/cart/static.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<div class="shop-cart">
{% block shop-cart-head %}
{% if cart.num_items == 0 %}
<div class="row lead text-muted py-1">
<div class="row">
<div class="col">
{% trans "There are no items in the cart." context "cart" %}
<p class="lead text-muted">{% trans "There are no items in the cart." context "cart" %}</p>
</div>
</div>
{% endif %}
Expand Down
4 changes: 2 additions & 2 deletions shop/templates/shop/cart/watch.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

<div class="shop-cart" shop-cart="{% url 'shop:watch-list' %}">
{% block shop-watch-head %}
<div class="row lead text-muted" ng-if="cart.items.length==0">
<div class="row" ng-if="cart.items.length==0">
<div class="col">
{% trans "You are perfectly happy!" context "cart" %}
<p class="lead text-muted">{% trans "You are perfectly happy!" context "cart" %}</p>
</div>
</div>
{% endblock shop-watch-head %}
Expand Down

0 comments on commit d658416

Please sign in to comment.