From 1d5339f29a2b4b92796a66ef5fcd92906e5157b7 Mon Sep 17 00:00:00 2001
From: chris <kokosias@yahoo.gr>
Date: Wed, 22 Sep 2021 01:10:14 +0300
Subject: [PATCH] revert colors

---
 editors/demo/src/Editors.js | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/editors/demo/src/Editors.js b/editors/demo/src/Editors.js
index a2c811d49..9c6b45516 100644
--- a/editors/demo/src/Editors.js
+++ b/editors/demo/src/Editors.js
@@ -19,9 +19,9 @@ const GlobalStyle = createGlobalStyle`
 `;
 
 const activeStyles = css`
-  background: #fff;
-  color: #535e76;
-  border: 1px solid#535E76;
+  background: #535e76;
+  color: #fff;
+  padding: 5px 15px 5px 15px;
 `;
 
 const ProjectContainer = styled.div`
@@ -50,12 +50,12 @@ const Projects = styled.div`
 `;
 
 const ProjectButton = styled.button`
+  border: 1px solid #535e76;
   cursor: pointer;
+  color: #535e76;
   margin-right: 20px;
-  border: none;
-  background: #535e76;
-  padding: 5px 15px 5px 15px;
-  color: #fff;
+  background: #fff;
+  padding: 4px 14px 4px 14px;
   ${props => props.isActive && activeStyles}
 `;
 
-- 
GitLab