Skip to content

Commit

Permalink
Removed hardcoded colors and added color variables insted. (#1846)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josephalexantony-aot authored Jan 22, 2024
1 parent 2965fdc commit c1929d1
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions forms-flow-web/src/containers/styles.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@import "../assets/styles/themes.scss";

/*#sidebar {
& .navbar {
padding: 15px 10px;
Expand Down Expand Up @@ -289,7 +287,7 @@ margin-right: 1rem;
height: 100%;
width: 100%;
position: fixed;
background-color: #54525252;
background-color: var(--color-gray-800);
z-index: 1300;
-webkit-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
Expand All @@ -301,7 +299,7 @@ margin-right: 1rem;
right: -50px;
padding: 5px 13px;
top: 67px;
background: #fff;
background: var(--color-white);
border-radius: 10px;
font-size: x-large;
}
Expand All @@ -320,8 +318,8 @@ margin-right: 1rem;

.button_component
{
background-color: white;
color: black;
background-color: var(--color-white);
color: var(--color-black);
border: none;
padding: auto;
}
Expand All @@ -331,7 +329,7 @@ margin-right: 1rem;
}

.head-item {
color: #ABABAB;
color: var(--color-gray-600);
cursor: pointer;
padding-bottom: 3rem;
}
Expand Down

0 comments on commit c1929d1

Please sign in to comment.