Skip to content

Commit

Permalink
fix typo, remove whitespace, merge transition props
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyzanchi committed Dec 21, 2023
1 parent 1df4be5 commit 04e03c4
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions packages/gatsby-theme-newrelic/src/components/Tabs/BarItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,17 @@ const BarItem = ({ className, index, children, id, disabled }) => {
type="button"
onClick={handleTabClick}
css={css`
background: none;
border: none;
border-top: var(--primary-background-color) solid 1px;
border-bottom: #afe2e3 solid 1px;
transition: 0.5s ease-in;
transition-property: background;
background: none;
border-top: var(--primary-background-color) solid 1px;
color: var(--primary-text-color);
cursor: pointer;
flex-grow: 1;
text-align: left;
font-weight: bold;
padding: 0.75em 0.5em 0.75em 01em;
cursor: pointer;
padding: 0.75em 0.5em 0.75em 1em;
text-align: left;
transition: 500ms background ease-in;
user-select: none;
white-space: nowrap;
Expand Down

0 comments on commit 04e03c4

Please sign in to comment.