From 63d861491a3250b51887f0c9762efa29e361d3e6 Mon Sep 17 00:00:00 2001 From: Antoine M Date: Fri, 10 Nov 2023 10:32:56 +0100 Subject: [PATCH] refining few apparence details in editor --- resources/css/editor-content/gutenberg.css | 3 +++ resources/css/editor-style.css | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/resources/css/editor-content/gutenberg.css b/resources/css/editor-content/gutenberg.css index b7ad897..2f97592 100644 --- a/resources/css/editor-content/gutenberg.css +++ b/resources/css/editor-content/gutenberg.css @@ -77,6 +77,9 @@ article > *:not(.entry-content, .chapter-header-block), h4 { @apply font-bold text-xl mt-6 mb-3; } + h5 { + @apply font-bold text-lg mt-6 mb-3; + } p { @apply my-3 p-0; diff --git a/resources/css/editor-style.css b/resources/css/editor-style.css index a7d9d76..75b22b2 100644 --- a/resources/css/editor-style.css +++ b/resources/css/editor-style.css @@ -68,3 +68,25 @@ ul li:before { margin-top: 9px; @apply bg-secondary; } + +h1 { + @apply text-2xl; +} + +h2 { + @apply text-xl mt-16 mb-8; +} + +h3 { + @apply font-bold text-2xl mt-16 mb-4; +} +h4 { + @apply font-bold text-xl mt-6 mb-3; +} +h5 { + @apply font-bold text-lg mt-6 mb-3; +} + +p { + @apply my-3 p-0; +}