# RTL Version

All the layouts have the pre-generated RTL CSS files at the following path:

```
src / assets / css / {layout} / {theme_name}-rtl.css
src / assets / css / {layout} / {theme_name}-rtl.min.css
```

To customize the styling in SCSS, follow the topic [Theme Customization](https://docs-drift-angular.g-axon.work/stylesheets/theme-customization) and then to generate the RTL version, follow the instructions given in the below section.

#### Generate RTL files after customization

In order to generate the RTL files after the customization done in SCSS. You need to run the following Gulp commands:

```css
$ gulp style-rtl-{layout}-{theme_name}

/* For example: $ gulp style-rtl-crm-main */
```

To generate a minified version, use the following command

```css
$ gulp min-style-rtl-{layout}-{theme_name}

/* For example: $ gulp style-rtl-crm-main */
```
