diff --git a/org-theme/dist/long/bundle.css b/org-theme/dist/long/bundle.css index a0db6b4..e6e43b0 100644 --- a/org-theme/dist/long/bundle.css +++ b/org-theme/dist/long/bundle.css @@ -685,11 +685,15 @@ ol ol ol ol ol { * 1. Remove top margin * 2. Add bottom margin for better content readability * 3. Set default font size (in rem) + * 4. Justify content for better readability + * 5. Enable hyphenation to keep inter-word spacing consistent */ p { margin-top: 0; /* [1] */ margin-bottom: var(--paragraph-margin-bottom); /* [2] */ font-size: var(--font-size); /* [3] */ + text-align: justify; /* [4] */ + hyphens: auto; /* [5] */ } /* ============================================================================== diff --git a/org-theme/dist/short/bundle.css b/org-theme/dist/short/bundle.css index 8d2168e..40181f6 100644 --- a/org-theme/dist/short/bundle.css +++ b/org-theme/dist/short/bundle.css @@ -685,11 +685,15 @@ ol ol ol ol ol { * 1. Remove top margin * 2. Add bottom margin for better content readability * 3. Set default font size (in rem) + * 4. Justify content for better readability + * 5. Enable hyphenation to keep inter-word spacing consistent */ p { margin-top: 0; /* [1] */ margin-bottom: var(--paragraph-margin-bottom); /* [2] */ font-size: var(--font-size); /* [3] */ + text-align: justify; /* [4] */ + hyphens: auto; /* [5] */ } /* ==============================================================================