Smaller text!

This commit is contained in:
Vidir Valberg Gudmundsson 2017-08-26 17:27:24 +02:00
parent 2341658e59
commit 84672dff7c
2 changed files with 5 additions and 3 deletions

View File

@ -43,13 +43,13 @@
{% for category in categories %}
<h1>{{ category.name }}</h1>
<h3>{{ category.name }}</h3>
{% for product in category.products.all %}
{% if product.in_stock %}
<div class="bar-product">
<h4 class="name">{{ product.name }}</h4>
<h4 class="pull-right price">{{ product.price }} HAX</h4>
<span class="name">{{ product.name }}</span>
<span class="pull-right price">{{ product.price }} HAX</span>
</div>
{% endif %}
{% endfor %}

View File

@ -293,9 +293,11 @@ body.bar-menu {
.bar-product .name {
width: 900px;
font-size: 14pt;
}
.bar-product .price {
font-size: 14pt;
width: 300px;
}