diff --git a/babybuddy/static_src/scss/forms.scss b/babybuddy/static_src/scss/forms.scss
index a374a6ec..3a0d8705 100644
--- a/babybuddy/static_src/scss/forms.scss
+++ b/babybuddy/static_src/scss/forms.scss
@@ -51,4 +51,10 @@
padding: 0.25rem 0.5rem;
position: relative;
}
+}
+
+form .row details {
+ // removing this causes slight mis-alignment between fields in the details and the rest of the fields
+ //on the form at the left hand side of the box
+ padding-right: 0;
}
\ No newline at end of file
diff --git a/babybuddy/templates/babybuddy/base.html b/babybuddy/templates/babybuddy/base.html
index bf7a029c..f785dc2e 100644
--- a/babybuddy/templates/babybuddy/base.html
+++ b/babybuddy/templates/babybuddy/base.html
@@ -44,6 +44,22 @@
{% if user.is_authenticated %}{% endif %}
- {% block javascript %}{% endblock %}
+ {% block javascript %}
+
+ {% endblock %}