Skip to content

Commit 8fd0386

Browse files
committed
fix: Change close button hover color to something more neutral
No longer shows HelloSign Blue (cerulean). This is especially important for users with white labeling enabled
1 parent 0cde022 commit 8fd0386

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/sass/embedded.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@
6868
height: 100%;
6969
width: 100%;
7070
border: none;
71-
background-color: #1a1a1a;
71+
background-color: $hellosign-castle-rock;
7272
transition: background-color 0.35s ease;
7373
will-change: background-color;
7474
box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.25);
7575
cursor: pointer;
7676

7777
&:hover {
78-
background-color: $hellosign-cerulean;
78+
background-color: $hellosign-ashen;
7979
}
8080

8181
&::before,

src/sass/variables.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
$hellosign-castle-rock: #1A1A1A;
2+
$hellosign-ashen: #4E4E4E;
13
$hellosign-cerulean: #00B3E6;
24
$hellosign-plume: #F7F8F9;

0 commit comments

Comments
 (0)