Skip to content

Commit 7b093a1

Browse files
committed
fix(breadcrumb): rtl padding
1 parent 3791614 commit 7b093a1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

scss/_breadcrumb.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,14 @@
33
@include border-radius($breadcrumb-border-radius);
44
@include borders($breadcrumb-borders);
55
}
6+
7+
*[dir="rtl"] {
8+
.breadcrumb-item::before {
9+
padding-right: 0;
10+
padding-left: $breadcrumb-item-padding;
11+
}
12+
.breadcrumb-item {
13+
padding-right: $breadcrumb-item-padding;
14+
padding-left: 0;
15+
}
16+
}

0 commit comments

Comments
 (0)