diff --git a/assets/print.scss b/assets/print.scss index 5748577ac..4f53c24e6 100644 --- a/assets/print.scss +++ b/assets/print.scss @@ -8,4 +8,12 @@ background: none; background-color: $white; } + hr { + display: block; + border: 2px solid $border-color; + } + + @page { + margin: 1cm; + } } diff --git a/components/InclusiveSubmitForm.vue b/components/InclusiveSubmitForm.vue index e2d85d454..f098703eb 100644 --- a/components/InclusiveSubmitForm.vue +++ b/components/InclusiveSubmitForm.vue @@ -149,7 +149,9 @@ watch: { clarification(v) { if (v) { - this.form.clarification = this.$t('inclusive.clarificationDefault'); + if (!this.form.clarification) { + this.form.clarification = this.$t('inclusive.clarificationDefault'); + } } else { this.form.clarification = null; } diff --git a/components/ScrollButton.vue b/components/ScrollButton.vue index bb00ed624..a97d5a3fc 100644 --- a/components/ScrollButton.vue +++ b/components/ScrollButton.vue @@ -1,5 +1,5 @@