From b74d234274010a55e302fd43448e78da54c18f38 Mon Sep 17 00:00:00 2001 From: JasterV <49537445+JasterV@users.noreply.github.com> Date: Wed, 10 Dec 2025 21:14:30 +0100 Subject: [PATCH] feat: update code block styles --- src/styles/global.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/styles/global.scss b/src/styles/global.scss index 1e3d3ab..a9ea0ae 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -143,6 +143,7 @@ --text-color-light: #657b83; --link-color: #9ca0ed; --link-hover-color: #cccfff; + --inline-code-color: #49a8f5; --font-size-m: 18px; } @@ -188,6 +189,12 @@ a:hover { font-size: 16px; } +p > code { + font-style: italic; + font-weight: bold; + color: var(--inline-code-color); +} + /* Fix responsiveness issues with generated diagrams */ .diagram img { max-width: 100% !important;