What is the most efficient way to style components in the browser dev tools with the default view encapsulation (emulated)?
My current workflow involves a lot of ted
You can directly edit your css project files from chrome devtools. Follow this steps:
This way you'll see the css files in inspection instead of inner style tags in header (you can see an example image in step 3 below).
This is the magic trick, this will let you edit your local files from devtools!
Edit your changes to the file.
Save the file.
Magic! Your local file was modified!
I LOVE Chrome!
Cheers