From b4eaa15017de2e9ff028dd79f4ac95187ff2ba7b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ga=C3=ABlle=20Morin?= <morin.gaelle@gmail.com>
Date: Wed, 13 Feb 2019 12:34:29 +0100
Subject: [PATCH] fix: scroll is now ok on Firefox

---
 src/dependencies.pug | 4 ++--
 src/styles/main.scss | 8 ++++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/dependencies.pug b/src/dependencies.pug
index f8fa9f84..b6786d05 100644
--- a/src/dependencies.pug
+++ b/src/dependencies.pug
@@ -33,9 +33,9 @@ link(rel='stylesheet', href='https://fonts.googleapis.com/css?family=Open+Sans:3
 //link(rel='import', href='/lib/sib-chat/sib-chat.html')
 
 //- cdn
-script(type="module" src="https://unpkg.com/@startinblox/core@0.5.7")
+script(type="module" src="https://unpkg.com/@startinblox/core@0.5")
 script(type="module" src="https://unpkg.com/@startinblox/router@latest")
-script(type="module" src="https://cdn.happy-dev.fr/sib-chat/sib-chat.js")
+script(type="module" src="https://unpkg.com/@startinblox/component-chat@0.1")
 
 script(type="module" src="/scripts/hd-widgets.js")
 
diff --git a/src/styles/main.scss b/src/styles/main.scss
index d9c2144f..13570413 100644
--- a/src/styles/main.scss
+++ b/src/styles/main.scss
@@ -17,11 +17,14 @@ html {
   background-color: $color-anti-flash-white;
   color: $color-text-base;
 }
-// body {
+
+body {
+  margin: 0 auto;
+  overflow-wrap: break-word;
 //   height: 100%;
 //   display:flex;
 //   flex-direction: column;
-// }
+ }
 
 h1,
 h2,
@@ -114,6 +117,7 @@ h5 {
 
 #content {
   display: flex;
+  overflow: hidden;
 }
 
 #mainContainer {
-- 
GitLab