diff --git a/src/humulus/static/style.css b/src/humulus/static/style.css index d660aa8..762ee59 100644 --- a/src/humulus/static/style.css +++ b/src/humulus/static/style.css @@ -35,3 +35,8 @@ body { .above-footer { padding-bottom: 14rem; } + +.spec-progress { + height: 1.5rem; + font-size: 1.125rem; +} diff --git a/src/humulus/templates/_macros.html b/src/humulus/templates/_macros.html index 7027bd0..c570f6d 100644 --- a/src/humulus/templates/_macros.html +++ b/src/humulus/templates/_macros.html @@ -49,26 +49,26 @@ #} {% macro render_delete_modal(path, id, name) %} @@ -175,9 +205,9 @@ {% if session.logged_in %}
Update Recipe - {{ render_delete_button('Delete Recipe', 'deleteRecipe', 'btn-danger') }} + {{ macros.render_delete_button('Delete Recipe', 'deleteRecipe', 'btn-danger') }}
-{{ render_delete_modal(url_for('recipes.delete', id=recipe._id), 'deleteRecipe', recipe.name) }} +{{ macros.render_delete_modal(url_for('recipes.delete', id=recipe._id), 'deleteRecipe', recipe.name) }} {% endif %}
Export JSON
Recipe revision: {{ recipe._rev }}