From 84346cad8a70374815ea3d462ab0c6b9d964b272 Mon Sep 17 00:00:00 2001
From: Richard Henck <richard.henck@iqb.hu-berlin.de>
Date: Thu, 1 Jun 2023 14:51:43 +0200
Subject: [PATCH] Improve element default margins

#452
---
 .../common/models/elements/compound-elements/likert/likert.ts   | 2 +-
 .../common/models/elements/input-elements/radio-button-group.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/projects/common/models/elements/compound-elements/likert/likert.ts b/projects/common/models/elements/compound-elements/likert/likert.ts
index e2d2ab63a..863a859d0 100644
--- a/projects/common/models/elements/compound-elements/likert/likert.ts
+++ b/projects/common/models/elements/compound-elements/likert/likert.ts
@@ -27,7 +27,7 @@ export class LikertElement extends CompoundElement implements PositionedUIElemen
     this.rows = element.rows !== undefined ? element.rows?.map(row => new LikertRowElement(row)) : [];
     this.label = element.label !== undefined ? element.label : 'Optionentabelle Beschriftung';
     this.label2 = element.label2 !== undefined ? element.label2 : 'Optionentabelle Erste Spalte';
-    this.position = UIElement.initPositionProps(element.position);
+    this.position = UIElement.initPositionProps({ marginBottom: { value: 35, unit: 'px' }, ...element.position });
     this.styling = {
       ...UIElement.initStylingProps({
         backgroundColor: 'transparent',
diff --git a/projects/common/models/elements/input-elements/radio-button-group.ts b/projects/common/models/elements/input-elements/radio-button-group.ts
index 1cd321d1d..9899bd899 100644
--- a/projects/common/models/elements/input-elements/radio-button-group.ts
+++ b/projects/common/models/elements/input-elements/radio-button-group.ts
@@ -20,7 +20,7 @@ export class RadioButtonGroupElement extends InputElement implements PositionedU
     if (element.options) this.options = [...element.options];
     if (element.alignment) this.alignment = element.alignment;
     if (element.strikeOtherOptions) this.strikeOtherOptions = element.strikeOtherOptions;
-    this.position = UIElement.initPositionProps({ marginBottom: { value: 30, unit: 'px' }, ...element.position });
+    this.position = UIElement.initPositionProps({ ...element.position });
     this.styling = {
       ...UIElement.initStylingProps({
         backgroundColor: 'transparent',
-- 
GitLab