Skip to content

Commit

Permalink
fix: WIP - update banner styles for I/O mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkmcadoo committed Jan 7, 2022
1 parent f748cbc commit 9c3183b
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions src/components/IOBanner.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,38 @@ const BannerHeaderContent = () => (
<h2
css={css`
color: var(--color-brand-300);
@media (max-width: ${MOBILE_BREAKPOINT}) {
font-weight: 400;
}
`}
>
Instant Observability
</h2>
<h1
css={css`
color: var(--color-neutrals-050);
@media (max-width: ${MOBILE_BREAKPOINT}) {
font-weight: 400;
}
`}
>
Dashboards, alerts, and integrations all in one place
</h1>
<body
css={css`
color: var(--color-neutrals-050);
background: none;
color: var(--color-brand-300);
@media (max-width: ${MOBILE_BREAKPOINT}) {
font-size: 12px;
font-weight: 300;
}
`}
>
Our quickstarts bundle everything you need to start monitoring like a pro
right out of the box.
Our quickstarts bundles get you monitoring like a pro right out of the
box.
</body>
</div>
);
Expand Down

0 comments on commit 9c3183b

Please sign in to comment.