From 9e00d421fb8234a3881dc176dd451caa78fe182d Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 12 Jul 2025 22:34:27 +0300 Subject: [PATCH] fix(ckeditor): color and font mismatch after update --- apps/client/src/stylesheets/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css index f291c46fb..1a527bf5c 100644 --- a/apps/client/src/stylesheets/style.css +++ b/apps/client/src/stylesheets/style.css @@ -924,6 +924,13 @@ div[data-notify="container"] { font-family: var(--monospace-font-family); } +.ck-content { + --ck-content-font-family: var(--detail-font-family); + --ck-content-font-size: 1.1em; + --ck-content-font-color: var(--main-text-color); + --ck-content-line-height: var(--bs-body-line-height); +} + .ck-content .table table th { background-color: var(--accented-background-color); }