Writing this:
font-family: $(type_header_font_family.family), $(type_header_font_family.fallback_families);
I would expect:
font-family: {{ settings.type_header_font_family.family }}, {{ settings.type_header_font_family.fallback_families }};
But get this:
font-family: {{ settings.type_header_font_family.family }}, $(type_header_font_family.fallback_families);
Only the first $(variable) is parsed.
Writing this:
I would expect:
But get this:
Only the first $(variable) is parsed.