diff --git a/core/static/core/style.scss b/core/static/core/style.scss index 61eb71e0..d413b656 100644 --- a/core/static/core/style.scss +++ b/core/static/core/style.scss @@ -208,6 +208,7 @@ body { a.btn { display: inline-block; } + .btn { font-size: 15px; font-weight: normal; @@ -431,12 +432,17 @@ body { flex-wrap: wrap; $col-gap: 1rem; + $row-gap: 0.5rem; + &.gap { column-gap: var($col-gap); + row-gap: var($row-gap); } + @for $i from 2 through 5 { &.gap-#{$i}x { column-gap: $i * $col-gap; + row-gap: $i * $row-gap; } } } diff --git a/counter/templates/counter/counter_click.jinja b/counter/templates/counter/counter_click.jinja index b535952e..96a4b0e2 100644 --- a/counter/templates/counter/counter_click.jinja +++ b/counter/templates/counter/counter_click.jinja @@ -8,6 +8,7 @@ {% block additional_css %} + {% endblock %} {% block additional_js %} @@ -104,7 +105,7 @@ -

+

Total: @@ -153,18 +154,24 @@ {% for category in categories.keys() -%}

-
{{ category }}
- {% for product in categories[category] -%} - - {%- endfor %} +
{{ category }}
+
+ {% for product in categories[category] -%} + + {%- endfor %} +
{%- endfor %}