|
@@ -100,7 +100,7 @@ const BannerWrapper = styled('div')<BannerWrapperProps>`
|
|
height: 180px;
|
|
height: 180px;
|
|
color: ${p => p.theme.white};
|
|
color: ${p => p.theme.white};
|
|
|
|
|
|
- @media (min-width: ${p => p.theme.breakpoints[0]}) {
|
|
|
|
|
|
+ @media (min-width: ${p => p.theme.breakpoints.small}) {
|
|
height: 220px;
|
|
height: 220px;
|
|
}
|
|
}
|
|
`;
|
|
`;
|
|
@@ -117,7 +117,7 @@ const BannerContent = styled('div')`
|
|
const BannerTitle = styled('h1')`
|
|
const BannerTitle = styled('h1')`
|
|
margin: 0;
|
|
margin: 0;
|
|
|
|
|
|
- @media (min-width: ${p => p.theme.breakpoints[0]}) {
|
|
|
|
|
|
+ @media (min-width: ${p => p.theme.breakpoints.small}) {
|
|
font-size: 40px;
|
|
font-size: 40px;
|
|
}
|
|
}
|
|
`;
|
|
`;
|
|
@@ -125,7 +125,7 @@ const BannerTitle = styled('h1')`
|
|
const BannerSubtitle = styled('div')`
|
|
const BannerSubtitle = styled('div')`
|
|
margin: 0;
|
|
margin: 0;
|
|
|
|
|
|
- @media (min-width: ${p => p.theme.breakpoints[0]}) {
|
|
|
|
|
|
+ @media (min-width: ${p => p.theme.breakpoints.small}) {
|
|
font-size: ${p => p.theme.fontSizeExtraLarge};
|
|
font-size: ${p => p.theme.fontSizeExtraLarge};
|
|
}
|
|
}
|
|
`;
|
|
`;
|