Skip to content

Commit

Permalink
background color to constant in variables
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyi-sl committed Jul 30, 2024
1 parent dc966ca commit dcb15ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Components/Common/Dropdown.styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
}

&:not(.active):hover {
background: #f7f8fa;
background: $bg-gray-90;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/Containers/FilterContainer.styles.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import "./../styles/variables";

.filters-container {
background: #F7F8FA;
background: $bg-gray-90;
display: flex;
flex-direction: column;

Expand Down
1 change: 1 addition & 0 deletions src/styles/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ $brand-primary-dark-gray: #1E2127;
$brand-primary-gray: #6D7584;
$dark-gray: #5c7288;
$bg-blue-50: #e6f1fd;
$bg-gray-90: #F7F8FA;

$white-0: #000;
$white-100: #fff;
Expand Down

0 comments on commit dcb15ea

Please sign in to comment.