YMH
April 1, 2024, 8:25am
1
Use case or problem
Hi there
right now publishing in RTL language (like Hebrew) presents the site when the columns of the text are to the left.
I can’t find any support for this, and it’ll be great if you can make some.
thanks!
Proposed solution
text from right to left
For now, maybe something in this topic could help:
Here’s my CSS for getting my published site right to left oriented (my
website - פנגייה - רשימת סיכומים - פנגייה ).
/* Variables */
.published-container {
--sidebar-left-border-width: 2px;
--sidebar-right-border-width: 2px;
--site-name-size: 36px;
--logo-max-height: 100px;
--component-title-size: var(--font-ui-medium);
}
/* Make it rtl */
div,
h1,
h2,
h3,
h4,
h5 {
direction: rtl;
}
:root {
direction: inherit;
writing-mode: sideways-rl;
text-orientation: sideways-right;
}
h1…