Skip to content

Commit 26c004f

Browse files
committed
fix(Offcanvas): offcanvas is not visible when LTR and RTL are enabled
1 parent 56a9a47 commit 26c004f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/assets/scss/_component-examples.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
display: block;
225225
height: 200px;
226226
visibility: visible;
227-
transform: translate(0);
227+
transform: translate(0) !important; // stylelint-disable-line declaration-no-important
228228
}
229229
}
230230

scss/_offcanvas.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@
7979
}
8080

8181
.offcanvas.show {
82-
transform: none;
82+
transform: none !important; // stylelint-disable-line declaration-no-important
8383
}

0 commit comments

Comments
 (0)