From 2a457997c467bb0f0fd96d351248f138c6e119a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind?= Date: Sat, 5 Dec 2020 21:54:23 +0100 Subject: [PATCH] Fixed inline code vlocks --- assets/css/components/theme.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/assets/css/components/theme.css b/assets/css/components/theme.css index 2e917bc..911e92a 100644 --- a/assets/css/components/theme.css +++ b/assets/css/components/theme.css @@ -22,7 +22,8 @@ img { display: block; margin: 0 auto; max-height: 80%; - max-width: 80%; + max-width: 80%; + min-width: 60%; } h1, h2, h3, h4, h5, h6 { @@ -110,3 +111,10 @@ a:hover { .MJX_LiveRegion { display: none; } + +code.highlighter-rouge { + color: #111; + background: #eee; + padding: .2rem; + border-radius: 3px; +}