We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug A change 26a8dfe was made to fix displaying a LTR calendar in a RTL site, however sometimes a RTL calendar is the desired behavior.
Expected behavior When desired, calendar should be displayed right-to-left.
Suggestion Could a CSS variable be used instead of hard-coding direction: ltr;? For example direction: var(--dp-dir, ltr);.
direction: ltr;
direction: var(--dp-dir, ltr);
The text was updated successfully, but these errors were encountered:
f436174
No branches or pull requests
Describe the bug
A change 26a8dfe was made to fix displaying a LTR calendar in a RTL site, however sometimes a RTL calendar is the desired behavior.
Expected behavior
When desired, calendar should be displayed right-to-left.
Suggestion
Could a CSS variable be used instead of hard-coding
direction: ltr;
? For exampledirection: var(--dp-dir, ltr);
.The text was updated successfully, but these errors were encountered: