Skip to content

Commit

Permalink
fix: linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkmcadoo committed Mar 20, 2024
1 parent cb4d818 commit fe7e9bc
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions packages/gatsby-theme-newrelic/src/components/GlobalHeader.js
Original file line number Diff line number Diff line change
@@ -150,16 +150,10 @@ const GlobalHeader = ({ className, activeSite, hideSearch = false }) => {
z-index: 80;
height: var(--global-header-height);
@media screen and (max-width: ${LAYOUT_BREAKPOINT}) and (min-width: ${NAV_BREAKPOINT}) {
grid-template-columns: calc(150px + 1.5rem) minmax(
0,
1fr
);
grid-template-columns: calc(150px + 1.5rem) minmax(0, 1fr);
}
@media screen and (max-width: ${mobileBreakpoint}) {
grid-template-columns: calc(150px + 1.5rem) minmax(
0,
1fr
);
grid-template-columns: calc(150px + 1.5rem) minmax(0, 1fr);
}
`}
>

0 comments on commit fe7e9bc

Please sign in to comment.