From 39cf42d1bd66e8cd29c001e8450a627985ed0f08 Mon Sep 17 00:00:00 2001 From: Angie Jones Date: Wed, 25 Jun 2025 03:02:28 +0300 Subject: [PATCH] added MCPs menu item (#3066) --- documentation/docusaurus.config.ts | 5 +++++ documentation/src/css/custom.css | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/documentation/docusaurus.config.ts b/documentation/docusaurus.config.ts index 39aa515a92..a6f017bf8b 100644 --- a/documentation/docusaurus.config.ts +++ b/documentation/docusaurus.config.ts @@ -282,6 +282,11 @@ const config: Config = { position: "left", label: "Tutorials", }, + { + to: "/docs/category/mcp-servers", + position: "left", + label: "MCPs", + }, { to: "/blog", label: "Blog", position: "left" }, { type: 'dropdown', diff --git a/documentation/src/css/custom.css b/documentation/src/css/custom.css index 09fbd5755f..e60a49280c 100644 --- a/documentation/src/css/custom.css +++ b/documentation/src/css/custom.css @@ -338,7 +338,7 @@ html[data-theme="light"] .hide-in-light { } /* Force hamburger menu to appear earlier to prevent navbar overlap with smooth transitions */ -@media (max-width: 1350px) { +@media (max-width: 1450px) { .navbar__item { opacity: 0; transform: translateX(-10px); @@ -359,7 +359,7 @@ html[data-theme="light"] .hide-in-light { } /* Ensure navbar items are visible above the breakpoint */ -@media (min-width: 1351px) { +@media (min-width: 1451px) { .navbar__item { opacity: 1; transform: translateX(0);