Skip to content

Commit

Permalink
fix(component): Fixed Tooltip background style
Browse files Browse the repository at this point in the history
  • Loading branch information
myxvisual committed Jun 18, 2017
1 parent 3909fb9 commit f89f628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tooltip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class Tooltip extends React.Component<TooltipProps, TooltipState> {
transition: "all .25s 0s ease-in-out",
border: `1px solid ${theme.useFluentDesign ? theme.listLow : theme.baseLow}`,
color: theme.baseMediumHigh,
background: background || (theme.useFluentDesign ? theme.listLow : theme.chromeMedium),
background: background || theme.chromeMedium,
opacity: showTooltip ? 1 : 0,
transform: `translateY(${showTooltip ? "0px" : "10px"})`,
position: "absolute",
Expand Down

0 comments on commit f89f628

Please sign in to comment.