fix: padding of title moved to the right for better UI/UX in RTL mode (this commit doesn't affect UI/UX in LTR mode)

This commit is contained in:
Alimadadi 2019-11-05 12:22:23 +03:30
parent e9fe2491c4
commit 12dc3b19c8

View file

@ -6,7 +6,8 @@
flex: 1; flex: 1;
.title { .title {
padding-left: 0.5rem; @include nb-ltr(padding-left, 0.5rem);
@include nb-rtl(padding-right, 0.5rem);
} }
nb-card-header { nb-card-header {