/ Common / How To / How to use Custom CSS file in Angular Application
Search results

How to use Custom CSS File in Angular Application

21 Dec 2022 / 1 minute to read

This section explains about how to use the custom styles generated by Theme Editor to an Essential JS2 Angular components.

Create an Angular Application

Create an angular application with Essential JS 2 Angular Components using documentation.

Generating Custom CSS file

Generate custom CSS file using theme-studio.

Adding Custom CSS in Angular application

Add the generated Custom CSS file in your created Angular application inside ./src/.

Custom Style Mapping

Add Custom CSS file path in ./angular.json file under architect/build/options/styles property like below

Copied to clipboard
"styles": [
             "src/styles.css",
             "src/custom-material.css"
          ],

Run Angular Application

Then Run your Angular application and you will get Essential JS 2 Angular Components with custom styles.