I downloaded a free HTML theme called dashgum from the Internet. I am implementing it for an Angular2 application using angular-cli . I converted the css files to .scss and pasted the code into an angular app. Then I imported the files into a global stylesheet file called styles.scss to apply styles to the application as follows:
@import url('./scss/bootstrap.scss'); @import url('./scss/font-awesome/css/font-awesome.scss'); @import url('./scss/zabuto_calender.scss'); @import url('./scss/gritter/css/jquery.gritter.scss'); @import url('./scss/lineicons/style.scss'); @import url('./scss/style.scss'); @import url('./scss/style-responsive.scss');
The problem that I encounter during debugging is that all styles are displayed as inline styles in the browser (note the style tag):

I want the style to appear as external styles during validation, as in the subject. Take a look at the following screenshot:

These are the default settings in angular 2, since I did not make any visible changes to the styles that will be displayed during the inspection process. Is there any known way to change the settings in angular 2 so that styles appear as external styles when checking? Nested styles make debugging difficult. Any help directed towards a solution would be appreciated.
css angular scss-lint
Usamaman
source share