diff --git a/src/_includes/donations-current.html b/src/_includes/donations-current.html
index 30ed4b5..cf9dc75 100644
--- a/src/_includes/donations-current.html
+++ b/src/_includes/donations-current.html
@@ -1,35 +1,36 @@
-{{locale}}
-
-
-
- {{strings.date[locale]}} |
- {{strings.via[locale]}} |
- {{strings.from[locale]}} |
- {{strings.amount[locale]}} |
-
-
-
- {% for donation in donations[0].donations %}
-
- {{donation.date}} |
- {% if donation.via == 'opencollective' %}
- Open Collective |
- {% else %}
- {{strings[donation.via][locale]}} |
- {% endif %}
- {% if donation.from %}
- {{donation.from}} |
- {% else %}
- *** |
- {% endif %}
- {{donation.amount | amount}} € |
-
- {% endfor %}
-
-
-
- {{strings.total[locale]}} |
- {{donations[0].donations | sum | amount}} € |
-
-
-
+
+
+
+
+ {{strings.date[locale]}} |
+ {{strings.via[locale]}} |
+ {{strings.from[locale]}} |
+ {{strings.amount[locale]}} |
+
+
+
+ {% for donation in donations[0].donations %}
+
+ {{donation.date}} |
+ {% if donation.via == 'opencollective' %}
+ Open Collective |
+ {% else %}
+ {{strings[donation.via][locale]}} |
+ {% endif %}
+ {% if donation.from %}
+ {{donation.from}} |
+ {% else %}
+ *** |
+ {% endif %}
+ {{donation.amount | amount}} € |
+
+ {% endfor %}
+
+
+
+ {{strings.total[locale]}} |
+ {{donations[0].donations | sum | amount}} € |
+
+
+
+
diff --git a/src/_includes/donations.html b/src/_includes/donations.html
index 295f4a7..7887454 100644
--- a/src/_includes/donations.html
+++ b/src/_includes/donations.html
@@ -1,38 +1,40 @@
{% for year in donations %}
{{year.year}}
-
-
-
- {{strings.date[locale]}} |
- {{strings.via[locale]}} |
- {{strings.from[locale]}} |
- {{strings.amount[locale]}} |
-
-
-
- {% for donation in year.donations %}
-
- {{donation.date}} |
- {% if donation.via == 'opencollective' %}
- Open Collective |
- {% else %}
- {{strings[donation.via][locale]}} |
- {% endif %}
- {% if donation.from %}
- {{donation.from}} |
- {% else %}
- *** |
- {% endif %}
- {{donation.amount | amount}} € |
-
- {% endfor %}
-
-
-
- {{strings.total[locale]}} |
- {{year.donations | sum | amount}} € |
-
-
-
+
+
+
+
+ {{strings.date[locale]}} |
+ {{strings.via[locale]}} |
+ {{strings.from[locale]}} |
+ {{strings.amount[locale]}} |
+
+
+
+ {% for donation in year.donations %}
+
+ {{donation.date}} |
+ {% if donation.via == 'opencollective' %}
+ Open Collective |
+ {% else %}
+ {{strings[donation.via][locale]}} |
+ {% endif %}
+ {% if donation.from %}
+ {{donation.from}} |
+ {% else %}
+ *** |
+ {% endif %}
+ {{donation.amount | amount}} € |
+
+ {% endfor %}
+
+
+
+ {{strings.total[locale]}} |
+ {{year.donations | sum | amount}} € |
+
+
+
+
{% endfor %}
diff --git a/src/_includes/expenses-current.html b/src/_includes/expenses-current.html
index ba6c5fd..542e1b9 100644
--- a/src/_includes/expenses-current.html
+++ b/src/_includes/expenses-current.html
@@ -1,33 +1,35 @@
-
-
-
- {{strings.name[locale]}} |
- {{strings.type[locale]}} |
- {{strings.provider[locale]}} |
- {{strings.amount[locale]}} / {{strings.month[locale]}} |
- {{strings.amount[locale]}} / {{strings.year[locale]}} |
-
-
-
- {% for expense in expenses %}
-
- {% if expense.name[locale] %}
- {{expense.name[locale]}} |
- {% else %}
- {{expense.name}} |
- {% endif %}
- {{expense.type}} |
- {{expense.provider}} |
- {{expense.amount | amount}} € |
- {{expense.amount | year | amount}} € |
-
- {% endfor %}
-
-
-
- {{strings.total[locale]}} |
- {{expenses | sum | amount}} € |
- {{expenses | sum | year | amount}} € |
-
-
-
+
+
+
+
+ {{strings.name[locale]}} |
+ {{strings.type[locale]}} |
+ {{strings.provider[locale]}} |
+ {{strings.amount[locale]}} / {{strings.month[locale]}} |
+ {{strings.amount[locale]}} / {{strings.year[locale]}} |
+
+
+
+ {% for expense in expenses %}
+
+ {% if expense.name[locale] %}
+ {{expense.name[locale]}} |
+ {% else %}
+ {{expense.name}} |
+ {% endif %}
+ {{expense.type}} |
+ {{expense.provider}} |
+ {{expense.amount | amount}} € |
+ {{expense.amount | year | amount}} € |
+
+ {% endfor %}
+
+
+
+ {{strings.total[locale]}} |
+ {{expenses | sum | amount}} € |
+ {{expenses | sum | year | amount}} € |
+
+
+
+
diff --git a/src/scss/main.scss b/src/scss/main.scss
index 07512ef..56717ef 100644
--- a/src/scss/main.scss
+++ b/src/scss/main.scss
@@ -270,6 +270,10 @@ pre {
}
}
+.table-container {
+ overflow-y: auto;
+}
+
table.table {
width: 100%;
margin-bottom: 16px;