From 04eeb28c0970552be7b75d106e77d734a4abccfc Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 16 Oct 2025 14:47:23 +0300 Subject: [PATCH] feat(collection/presentation): support CK editor size --- .../widgets/collections/presentation/slidejs.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/apps/client/src/widgets/collections/presentation/slidejs.css b/apps/client/src/widgets/collections/presentation/slidejs.css index bf798c186..c3e9735be 100644 --- a/apps/client/src/widgets/collections/presentation/slidejs.css +++ b/apps/client/src/widgets/collections/presentation/slidejs.css @@ -5,4 +5,16 @@ figure img { span.katex-html { display: none !important; -} \ No newline at end of file +} + +p:has(span.text-tiny), +p:has(span.text-small), +p:has(span.text-big), +p:has(span.text-huge) { + line-height: unset !important; +} + +span.text-tiny { font-size: 0.5em; } +span.text-small { font-size: 0.75em; } +span.text-big { font-size: 1.5em; } +span.text-huge { font-size: 2em; } \ No newline at end of file