From 9ad931ee25feb9cb73c4e120d4fce8182ffec233 Mon Sep 17 00:00:00 2001
From: Benoit Alessandroni <benoit@happy-dev.fr>
Date: Mon, 23 Sep 2019 00:44:44 +0200
Subject: [PATCH] Some fixes on the logout button

---
 src/includes/entrepreneur/components/header.pug | 2 +-
 src/includes/mentor/components/header.pug       | 2 +-
 src/styles/index.scss                           | 9 ++++++---
 3 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/src/includes/entrepreneur/components/header.pug b/src/includes/entrepreneur/components/header.pug
index 9f6911cd..ab9b1d5a 100644
--- a/src/includes/entrepreneur/components/header.pug
+++ b/src/includes/entrepreneur/components/header.pug
@@ -33,5 +33,5 @@
                             sib-link(next='entrepreneur-account')
                                 p My account
                         li
-                            sib-link.logout-button(next='entrepreneur-dashboard')
+                            a.logout-button
                                 p Logout
\ No newline at end of file
diff --git a/src/includes/mentor/components/header.pug b/src/includes/mentor/components/header.pug
index fc5efdc8..758052bb 100644
--- a/src/includes/mentor/components/header.pug
+++ b/src/includes/mentor/components/header.pug
@@ -36,5 +36,5 @@
                             sib-link(next='mentor-account')
                                 p My account
                         li
-                            sib-link.logout-button(next='mentor-dashboard')
+                            a.logout-button
                                 p Logout
\ No newline at end of file
diff --git a/src/styles/index.scss b/src/styles/index.scss
index a3e26438..3bb0c021 100644
--- a/src/styles/index.scss
+++ b/src/styles/index.scss
@@ -1365,7 +1365,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
     cursor: pointer;
 }
 
-.dropdownPanel {
+#header .flex .dropdownPanel {
     position: absolute;
     min-width: 150px;
     background-color: #444C4D;
@@ -1379,7 +1379,10 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
         margin:0;
         list-style: none; 
     }
-    sib-link{
+    a {
+        margin: 0;
+    }
+    sib-link, a{
         display: block;
         padding: 10px 20px;
         text-decoration: none;
@@ -1390,7 +1393,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
             margin: 0;
         }
     }
-    sib-link:hover{
+    sib-link:hover, a:hover{
         background: #2D3132;
     }
     li:not(last-child){
-- 
GitLab