diff --git a/components/DialogueBox.vue b/components/DialogueBox.vue
index 597a2df6b..0417e0776 100644
--- a/components/DialogueBox.vue
+++ b/components/DialogueBox.vue
@@ -9,11 +9,11 @@
-
+
@@ -53,6 +53,7 @@
icon: undefined,
header: undefined,
message: undefined,
+ margin: true,
color: null,
value: undefined,
size: undefined,
@@ -88,7 +89,8 @@
this.icon = message.icon || (choice ? 'map-marker-question' : null);
this.header = message.header;
this.message = message.message || (choice ? this.$t('confirm.header') : null);
- this.size = size;
+ this.margin = message.margin ?? true;
+ this.size = message.size ?? size;
this.color = color;
this.value = value;
this.shown = true;
@@ -118,6 +120,7 @@
this.icon = undefined;
this.header = undefined;
this.message = undefined;
+ this.margin = true;
this.color = null;
this.value = undefined;
this.size = undefined;
diff --git a/components/T.vue b/components/T.vue
index cdd00d2ea..e4b3b7f37 100644
--- a/components/T.vue
+++ b/components/T.vue
@@ -3,7 +3,7 @@