From ca9dd57a2e5b78e69b67a5614e716593081a06a6 Mon Sep 17 00:00:00 2001
From: gaelle morin <gmorin.dev@gmail.com>
Date: Mon, 14 Dec 2020 11:41:26 +0100
Subject: [PATCH] feature: hiiden class and hidden attribute added in scss
 files

---
 src/index.pug         | 2 +-
 src/styles/index.scss | 8 ++++++++
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/src/index.pug b/src/index.pug
index 3445ac93..ca736601 100644
--- a/src/index.pug
+++ b/src/index.pug
@@ -22,7 +22,7 @@ html(lang="en")
     nav#main__menu.segment.bg-color-heading.lg-quarter.float-left
       include menu-left.pug
 
-    main#content.segment.bg-color-third.lg-three-quarter.float-left.notLoggedIn
+    main#content.segment.lg-three-quarter.float-left.notLoggedIn
       if endpoints.dashboards || (endpoints.get && endpoints.get.dashboards)
         #dashboard(hidden, data-view="dashboard").no-sidebar.with-padding
           include page-dashboard.pug
diff --git a/src/styles/index.scss b/src/styles/index.scss
index 5d776f24..40a20cbf 100644
--- a/src/styles/index.scss
+++ b/src/styles/index.scss
@@ -17,5 +17,13 @@
   box-sizing: inherit;
 }
 
+.hidden, [hidden] {
+  display: none !important;
+}
+
+main {
+  background-color: pink;
+}
+
 @import 'hubl-framework/_index';
 @import 'hubl-app/_index';
-- 
GitLab