I'm currently utilizing Bootstrap 4 library for managing spacing (margins & paddings) on a static website by using bootstrap classes.
For example:
<p class="mr-3">Lorem ...</p>
Now, what if I need to switch the HTML direction from ltr to rtl? In this scenario, mr-* should become ml-*.
So how can I tackle this issue?
Do I have to override the bootstrap classes? Or does Bootstrap offer a solution for this problem?
If overriding the bootstrap classes is necessary, is there a way to only change the margin direction?
Note: I am working with SASS
Thank you.