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
claude/api-code-samples-plan-MEkQO
Jason Stirnaman 2025-12-08 14:38:54 -06:00
parent a0a4a16b39
commit 023e7495d4
1 changed files with 4 additions and 4 deletions

View File

@ -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;
}