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; +}