Skip to content

Commit

Permalink
fix(axis): X and Y Axis Tooltip color matches theme
Browse files Browse the repository at this point in the history
  • Loading branch information
RomRider committed Jan 22, 2021
1 parent ce3c45c commit fb717ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,13 +183,13 @@ export const styles: CSSResult = css`
opacity: 0;
padding: 9px 10px;
pointer-events: none;
color: #373d3f;
color: var(--primary-text-color);
font-size: 13px;
text-align: center;
border-radius: 2px;
position: absolute;
z-index: 10;
background: #eceff1;
background: var(--card-background-color);
border: 1px solid #90a4ae;
transition: 0.15s ease all;
}
Expand Down Expand Up @@ -274,13 +274,13 @@ export const styles: CSSResult = css`
opacity: 0;
padding: 4px 10px;
pointer-events: none;
color: #373d3f;
color: var(--primary-text-color)
font-size: 13px;
text-align: center;
border-radius: 2px;
position: absolute;
z-index: 10;
background: #eceff1;
background: var(--card-background-color);
border: 1px solid #90a4ae;
}
Expand Down

0 comments on commit fb717ef

Please sign in to comment.