Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,11 @@ const config: Config = {
],
},
prism: {
// Both modes use the same dark token palette since code blocks
// always render on a pure-black background (see design-style.scss).
theme: prismThemes.nightOwl,
darkTheme: prismThemes.okaidia,
darkTheme: prismThemes.nightOwl,
additionalLanguages: ["bash", "sql", "python", "yaml", "json"],
},
// Change website analytics from Google Analytics to Matomo
matomo: {
Expand Down
28 changes: 0 additions & 28 deletions src/components/bootcamp/Card/index.tsx

This file was deleted.

37 changes: 0 additions & 37 deletions src/components/bootcamp/Card/styles.module.scss

This file was deleted.

18 changes: 0 additions & 18 deletions src/components/bootcamp/MainContent/CardLine.tsx

This file was deleted.

107 changes: 0 additions & 107 deletions src/components/bootcamp/MainContent/index.tsx

This file was deleted.

18 changes: 0 additions & 18 deletions src/components/bootcamp/MainContent/styles.module.scss

This file was deleted.

19 changes: 0 additions & 19 deletions src/components/bootcamp/TextPic/index.tsx

This file was deleted.

13 changes: 0 additions & 13 deletions src/components/bootcamp/TextPic/styles.module.scss

This file was deleted.

81 changes: 53 additions & 28 deletions src/components/common/Breadcrumbs/styles.module.scss
Original file line number Diff line number Diff line change
@@ -1,58 +1,83 @@
.breadcrumbs {
display: flex;
align-items: self-start;
height: 21px;
font-size: 13px;
color: var(--sub-text-color-2);
&.mdxPage {
.backPath {
color: #fff !important;
}
}
align-items: center;
font-size: 0.8125rem;
color: var(--color-text-muted);
gap: 4px;

.backLogoA {
position: relative;
top: 1px;
display: inline-flex;
align-items: center;
width: 16px;
height: 16px;
color: var(--color-text-muted);
transition: color var(--motion-fast);
&:hover {
color: var(--color-text);
}
.backLogoSvg {
display: inline-block;
fill: var(--back-home-logo-color);
fill: var(--color-text-muted);
}
.backLogoLightSvg {
display: none;
fill: currentColor;
}
}

.line {
fill: #4c4c4c;
fill: var(--color-border-strong);
vertical-align: middle;
width: 12px;
height: 12px;
opacity: 0.6;
}

.path {
span.leafPath {
color: var(--active-color);
vertical-align: middle;
}
display: inline-flex;
align-items: center;
gap: 4px;

.backPath {
text-decoration: none;
color: var(--color-text-muted);
padding: 4px 6px;
border-radius: var(--radius-sm);
transition: background-color var(--motion-fast),
color var(--motion-fast);
&:hover {
background-color: var(--color-bg-muted);
color: var(--color-text);
}
}
span.leafPath {
color: var(--color-accent);
vertical-align: middle;
padding: 4px 6px;
font-weight: 600;
}
}
}

html[data-theme="light"] {
.breadcrumbs:not(.mdxPage) {
color: #000;
}
.breadcrumbs:not(.mdxPage) svg {
fill: #000;
}
.breadcrumbs:not(.mdxPage) .line {
opacity: 1;
}
.breadcrumbs:not(.mdxPage) {
.breadcrumbs {
color: var(--color-text-muted);
.backLogoSvg {
display: none !important;
}
.backLogoLightSvg {
display: inline-block !important;
}
}
}

html[data-theme="dark"] {
.breadcrumbs {
.backLogoSvg {
display: none !important;
display: inline-block;
}
.backLogoLightSvg {
display: none;
}
}
}
Loading
Loading