Skip to content

Commit

Permalink
chore: fixing annoying warning about escaping in Emotion styling (#17972
Browse files Browse the repository at this point in the history
)

* chore: fixing annoying warning about escaping in Emotion styling

* linting ✨
  • Loading branch information
rusackas committed Jan 9, 2022
1 parent cb97e37 commit fecb6d9
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ NVD3.propTypes = {
};

export default styled(NVD3)`
.superset-legacy-chart-nvd3-dist-bar, .superset-legacy-chart-nvd3-bar {
.superset-legacy-chart-nvd3-dist-bar,
.superset-legacy-chart-nvd3-bar {
overflow-x: auto !important;
svg {
&.nvd3-svg {
Expand Down Expand Up @@ -165,7 +166,7 @@ export default styled(NVD3)`
padding: 8px;
color: #fff;
&:after {
content: '\25BC';
content: '\\25BC';
font-size: ${({ theme }) => theme.typography.sizes.m};
color: #484848;
position: absolute;
Expand Down

0 comments on commit fecb6d9

Please sign in to comment.