Questions tagged [bootstrap-rtl]

2 questions
5
votes
2 answers

How to enable bootstrap rtl in scss

I coded based on the documents in this link. But my code doesn't work in SCSS. this is my main.scss. @import "node_modules/bootstrap/scss/bootstrap"; body { background: red #{"/* rtl:blue */"}; } and this is my html
Morteza Negahi
  • 3,305
  • 8
  • 24
  • 42
0
votes
1 answer

How do I dynamically set attributes on the HTML element or add HEAD/(LINK|TITLE) elements in Angular

I have an Angular 12 application that I am trying to make work with both LTR and RTL languages (e.g. English and Arabic respectively) which can be chosen and applied by the end user when using the application. Bootstrap - which I use for UI style -…