Fix margin in ordered dishes, less bold
This commit is contained in:
parent
342e94a7bf
commit
695331dd1a
1 changed files with 6 additions and 11 deletions
|
@ -232,7 +232,7 @@
|
||||||
<h3>Ordered dishes</h3>
|
<h3>Ordered dishes</h3>
|
||||||
{% for dish_name, dish_order_items in order.group_by_dish() -%}
|
{% for dish_name, dish_order_items in order.group_by_dish() -%}
|
||||||
{% set has_comments = dish_order_items | map(attribute="comment") | any -%}
|
{% set has_comments = dish_order_items | map(attribute="comment") | any -%}
|
||||||
<div class="dish {{ 'spacecake' if not has_comments }}">
|
<div class="dish {{ 'spacecake no_comments' if not has_comments }}">
|
||||||
<h4>
|
<h4>
|
||||||
<span class="quantity">{{ dish_order_items | length }}</span> ×
|
<span class="quantity">{{ dish_order_items | length }}</span> ×
|
||||||
{{ dish_name }}
|
{{ dish_name }}
|
||||||
|
@ -361,6 +361,11 @@ h3 {
|
||||||
font-size: 150%;
|
font-size: 150%;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
h4 {
|
||||||
|
margin-bottom: 0.6em;
|
||||||
|
font-size: 110%;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
.location {
|
.location {
|
||||||
font-size: 150%;
|
font-size: 150%;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
@ -392,12 +397,6 @@ dl {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.box h4 {
|
|
||||||
font-size: 110%;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-bottom: 0.6em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.spacecake {
|
.spacecake {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
|
@ -426,10 +425,6 @@ li {
|
||||||
#per_dish .comments li {
|
#per_dish .comments li {
|
||||||
}
|
}
|
||||||
|
|
||||||
#per_dish .dish.no_comments {
|
|
||||||
display: flex;
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
#per_dish .dish.no_comments h4 {
|
#per_dish .dish.no_comments h4 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
|
|
Loading…
Reference in a new issue