Skip to content

Commit

Permalink
fix: horizontal scroll in rtl language
Browse files Browse the repository at this point in the history
(cherry picked from commit 5c45106)
  • Loading branch information
shariquerik authored and mergify[bot] committed Nov 23, 2022
1 parent 6465963 commit fcfb5f6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions frappe/public/scss/common/datepicker.scss
@@ -1,6 +1,4 @@
/*rtl:begin:ignore*/
@import "~air-datepicker/dist/css/datepicker.min";
/*rtl:end:ignore*/

.datepicker {
direction: ltr;
Expand All @@ -10,6 +8,11 @@
color: var(--text-color);
border-radius: var(--border-radius);
border: 1px solid var(--border-color);
position: fixed;

&.active {
position: absolute;
}

&--nav {
border-bottom: 1px solid var(--border-color);
Expand Down

0 comments on commit fcfb5f6

Please sign in to comment.