From 147225b3f9e9c0d5ffd5db34cbcfc51d9bd0fb2c Mon Sep 17 00:00:00 2001
From: rhenck <richard.henck@iqb.hu-berlin.de>
Date: Thu, 8 Jun 2023 15:31:24 +0200
Subject: [PATCH] Adjust default width for Pages

#453
---
 projects/common/models/page.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/projects/common/models/page.ts b/projects/common/models/page.ts
index 5abb4230d..4bb30f489 100644
--- a/projects/common/models/page.ts
+++ b/projects/common/models/page.ts
@@ -4,8 +4,8 @@ import { AnswerScheme, UIElement } from 'common/models/elements/element';
 export class Page {
   [index: string]: unknown;
   sections: Section[] = [];
-  hasMaxWidth: boolean = false;
-  maxWidth: number = 900;
+  hasMaxWidth: boolean = true;
+  maxWidth: number = 750;
   margin: number = 30;
   backgroundColor: string = '#ffffff';
   alwaysVisible: boolean = false;
-- 
GitLab