From 1c812b85db9337ae584e26f9651f4d8e3d257178 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Thu, 28 May 2026 15:55:45 -0700 Subject: [PATCH] site: normalize inline code size in changelog + FAQ answers .cf-items code and .cf-faq-answer code never set a font-size, so inline code rendered at 1em and looked oversized next to the body text (the page doesn't load main.css's global code rule). Match the 0.92em already used by .cf-faq-question code. Co-Authored-By: Claude Opus 4.8 (1M context) --- site/styles/changelog-faq-kinpaku.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/site/styles/changelog-faq-kinpaku.css b/site/styles/changelog-faq-kinpaku.css index 29dce48fa..befccd430 100644 --- a/site/styles/changelog-faq-kinpaku.css +++ b/site/styles/changelog-faq-kinpaku.css @@ -61,6 +61,7 @@ .cf-items strong { color: var(--ks-champagne); font-weight: 500; } .cf-items code { font-family: var(--ks-mono); + font-size: 0.92em; color: var(--ks-kinpaku); background: transparent; padding: 0; @@ -291,6 +292,7 @@ .cf-faq-answer strong { color: var(--ks-champagne); font-weight: 500; } .cf-faq-answer code { font-family: var(--ks-mono); + font-size: 0.92em; color: var(--ks-kinpaku); background: transparent; padding: 0;