From df5353ba2b8cad2ccfd7487da96aa9ee8f9cf91c Mon Sep 17 00:00:00 2001 From: Anton Roslund Date: Mon, 17 Feb 2025 19:46:47 +0100 Subject: [PATCH] Added styling for code blocks for better readability --- assets/scss/_variables_project.scss | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/assets/scss/_variables_project.scss b/assets/scss/_variables_project.scss index 0224149..db910da 100644 --- a/assets/scss/_variables_project.scss +++ b/assets/scss/_variables_project.scss @@ -22,5 +22,16 @@ Might want to allow editing /* Change the color of the doc rightside sidebar links */ .td-sidebar-toc a { color: grey !important; } -/* Hide links to the las change commit*/ +/* +Hide links to the last change commit. +Ugly workaround that leves to colon ":" +*/ .td-page-meta__lastmod a { display: none; } + +/* Formating of inline blocks */ +code { + background-color: #f0f0f0; + color: #555555 !important; + padding: 2px 4px; + border-radius: 4px; +} \ No newline at end of file