Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Commit

Permalink
Merge pull request #156 from newrelic/bugfixing
Browse files Browse the repository at this point in the history
bug fixing
  • Loading branch information
sjyothi54 authored May 9, 2022
2 parents 5e592b8 + 13f21d5 commit 95263a7
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ const GlobalHeader = ({ className, activeSite }) => {
width: 100vw;
height: 100vh;
background-color: var(--color-white);
z-index: 1;
z-index: 10;
@media screen and (min-width: ${NAV_BREAKPOINT}) {
display: none;
Expand Down
3 changes: 1 addition & 2 deletions src/components/LandingPageFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const LandingPageFooter = ({
@media (min-width: 760px) {
h6 {
margin-bottom: 66px;
margin-bottom: 34px;
font-weight: 400;
}
.collaborate-section {
Expand Down Expand Up @@ -161,4 +161,3 @@ LandingPageFooter.propTypes = {
};

export default LandingPageFooter;

1 change: 0 additions & 1 deletion src/components/PageLayout/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ const Header = ({ children, className }) => (
flex-wrap: wrap;
align-items: baseline;
justify-content: space-between;
border-bottom: 1px solid var(--divider-color);
padding-bottom: 1rem;
@media screen and (max-width: 1080px) {
Expand Down
4 changes: 0 additions & 4 deletions src/components/QuickstartOverview.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,6 @@ const QuickstartOverview = ({ quickstart }) => {
css={css`
@media screen and (max-width: 760px) {
width: fit-content;
margin: 40px 70px 40px 58px;
}
@media screen and (min-width: 760px) {
margin: 104px 155px 104px 168px;
}
`}
>
Expand Down
18 changes: 18 additions & 0 deletions src/components/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,24 @@ h4,h5,h6,p{
h6{
font-size:24px;
}
@media (max-width: 760px) {
h3 {
line-height: 40px;
font-size: 36px;
}
h6 {
line-height: 32px;
}
}
@media (min-width: 760px) {
h3 {
line-height: 50px;
font-size: 44px;
}
h6 {
line-height: 30px;
}
}
p{
font-size:18px;
}
Expand Down

0 comments on commit 95263a7

Please sign in to comment.