{Astro.locals.t("hero.popular", "Popular")}:
@@ -66,13 +59,6 @@ const is404 = Astro.locals.starlightRoute?.id === "404";
letter-spacing: -4px;
color: var(--sl-color-white);
}
- .search-container {
- width: 90%;
- margin: auto;
- border: 1px solid
- color-mix(in srgb, var(--sl-color-white) 5%, transparent);
- }
-
.badges {
background-color: color-mix(
in srgb,
@@ -94,9 +80,6 @@ const is404 = Astro.locals.starlightRoute?.id === "404";
line-height: 3.5rem !important;
letter-spacing: -2px;
}
- .search-container {
- width: 100%;
- }
}
}
diff --git a/src/components/override-components/SiteTitle.astro b/src/components/override-components/SiteTitle.astro
index b3f101f..1b5abc1 100644
--- a/src/components/override-components/SiteTitle.astro
+++ b/src/components/override-components/SiteTitle.astro
@@ -28,9 +28,21 @@ const {
{
src || srcDarkmode || logo || logo_darkmode ? (
<>
+
p.id === activeProgramId);
-const sidebarResult = activeProgram
+const navbarResult = activeProgram
? await fetchDirectory(activeProgramId)
: { entries: [], errorMessage: undefined };
-const sidebarItems = sidebarResult.entries;
+const navbarItems = navbarResult.entries;
const activeCourseId = pathSegments[1];
// ==== GRID ITEMS ====
@@ -40,60 +40,29 @@ const getIconSrc = (type: string) => {
---