I have right-side aligned text and I want it to push it a little bit left like you do with text-indent bur on the right side. Any solution with that? I\'ve been trying with
Simple solution is to apply a "before" CSS style to your text element which negates all side effects of direction: rtl;
direction: rtl;
&:before { content: ' '; width: 100px; float: right; height: 5px; }