From 023e7495d47642e19eea9b5cff3f481fc306e17b Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Mon, 8 Dec 2025 14:38:54 -0600 Subject: [PATCH] fix(api): Match sidebar nav font sizes for operation items - Changed operation link font-size from 0.85rem to 0.95rem to match sidebar - Changed path code font-size from 0.75rem to 0.85rem for consistency - Adjusted method badge font-size from 0.55rem to 0.6rem for readability --- assets/styles/layouts/_api-layout.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/styles/layouts/_api-layout.scss b/assets/styles/layouts/_api-layout.scss index 310a4282e..3c3c11ce9 100644 --- a/assets/styles/layouts/_api-layout.scss +++ b/assets/styles/layouts/_api-layout.scss @@ -327,17 +327,17 @@ display: flex; align-items: center; gap: 0.4rem; - font-size: 0.85rem; + font-size: 0.95rem; // Match sidebar nav font size } .api-method { display: inline-block; - font-size: 0.55rem; + font-size: 0.6rem; font-weight: $bold; text-transform: uppercase; padding: 0.15rem 0.3rem; border-radius: 3px; - min-width: 2rem; + min-width: 2.2rem; text-align: center; flex-shrink: 0; @@ -350,7 +350,7 @@ .api-path { font-family: $code; - font-size: 0.75rem; + font-size: 0.85rem; // Match sidebar nav font size word-break: break-all; color: inherit; }