There is a similar code on CSS
#content .page_header_wrap header>h1.entry-title, .woocommerce .entry-header h1.entry-title { font-family: LatoWebThin; font-size: 50px; } Faced with the fact that I can not understand how to handle the comma separation in SASS \ SCSS correctly?
$font_family_1: LatoWebThin; #content { .page_header_wrap { header { >h1.entry-title { font-family: $font_family_1; font-size: 50px; } } } } .woocommerce { .entry-header { h1.entry-title { font-family: $font_family_1; font-size: 50px; } } } The code turns out twice. How is this problem properly solved in SASS \ SCSS ?