Skip to content

Commit 1401a1c

Browse files
authored
BCP landing page (ChilliCream#5503)
1 parent a3a57bc commit 1401a1c

24 files changed

Lines changed: 952 additions & 18 deletions
229 KB
Binary file not shown.

website/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@
6666
"rxjs": "^7.1.0",
6767
"semver": "^7.3.8",
6868
"simple-git": "^2.39.0",
69-
"styled-components": "^5.3.0"
69+
"styled-components": "^5.3.0",
70+
"yaml": "^2.1.3"
7071
},
7172
"devDependencies": {
7273
"@babel/core": "^7.14.3",

website/src/components/articles/article-sections.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const TocListItem = styled.li<TocListItemProps>`
142142
active &&
143143
css`
144144
> ${TocLink} {
145-
font-weight: bold;
145+
font-weight: 600;
146146
}
147147
`}
148148
`;

website/src/components/doc-page/doc-page-navigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ const NavigationItem = styled.li<{ active: boolean }>`
563563
active &&
564564
css`
565565
> ${NavigationLink}, > ${NavigationGroup} > ${NavigationGroupToggle} {
566-
font-weight: bold;
566+
font-weight: 600;
567567
}
568568
`}
569569
`;

website/src/components/doc-page/doc-page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ const ResponsiveMenu = styled.div`
315315
316316
&.scrolled {
317317
top: 60px;
318+
border-radius: 0;
318319
}
319320
320321
${IsPhablet(css`
@@ -382,7 +383,7 @@ const DocumentationVersionWarning = styled.div`
382383
383384
> a {
384385
color: white !important;
385-
font-weight: bold;
386+
font-weight: 600;
386387
text-decoration: underline;
387388
}
388389

website/src/components/layout/footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ const Location = styled.div`
259259
const Title = styled.h3`
260260
margin: 15px 0 9px;
261261
font-size: 1em;
262-
font-weight: bold;
262+
font-weight: 600;
263263
color: ${THEME_COLORS.footerText};
264264
`;
265265

website/src/components/layout/header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,9 +329,9 @@ const NavLink = styled(Link)`
329329
padding: 10px 15px;
330330
font-family: ${FONT_FAMILY_HEADING};
331331
font-size: 0.833em;
332+
font-weight: 500;
332333
color: ${THEME_COLORS.textContrast};
333334
text-decoration: none;
334-
text-transform: uppercase;
335335
transition: background-color 0.2s ease-in-out;
336336
337337
&.active,
@@ -378,7 +378,7 @@ const LaunchLink = styled(Link)`
378378
font-family: ${FONT_FAMILY_HEADING};
379379
font-size: 0.833em;
380380
text-decoration: none;
381-
text-transform: uppercase;
381+
font-weight: 500;
382382
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
383383
384384
:hover {

website/src/components/mdx/code-block.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const IndicatorContent = styled.div`
127127
border-radius: 0px 0px var(--border-radius) var(--border-radius);
128128
padding: 2px 8px;
129129
font-size: 0.8em;
130-
font-weight: bold;
130+
font-weight: 600;
131131
letter-spacing: 0.075em;
132132
line-height: 1em;
133133
text-transform: uppercase;

website/src/components/mdx/copy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const CopySuccessToast: FC = () => {
5959
const ToastText = styled.div`
6060
font-size: 1.25rem;
6161
font-family: ${FONT_FAMILY};
62-
font-weight: bold;
62+
font-weight: 600;
6363
color: ${THEME_COLORS.textContrast};
6464
`;
6565

website/src/components/mdx/tabs/tab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const TabButton = styled.button`
3939
4040
&.active {
4141
color: ${THEME_COLORS.heading};
42-
font-weight: 700;
42+
font-weight: 600;
4343
}
4444
4545
@media only screen and (min-width: 860px) {

0 commit comments

Comments
 (0)