Skip to content

Commit

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

* chore: fixing annoying warning about escaping in Emotion styling

* linting ✨
  • Loading branch information
rusackas authored and shcoderAlex committed Feb 7, 2022
1 parent e7c5552 commit 6feaf80
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 6feaf80

Please sign in to comment.