I have included my component's .css file in this manner `
angular.
module('home').
component('home', {
templateUrl: 'home/home.template.html',
styleUrls: 'home/home.component.css'
});
` But it seems that the stylesheet is not getting applied. What is the right way of including the stylesheet? This is the folder structure.