There is a style in the compiled .css file:
media screen and (min-width: 768px) {
.SomePage_title .SomeSection_headline {
How can I quickly find in which of the 40 source .scss files this is configured?
I am currently using PhpStorm with regexp search:
SomePage(.*\n*.*)*_title(.*\n*.*)*SomeSection(.*\n*.*)*_headline
but the search is always very complicated and long, especially when mixins are used.