We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17a83f6 commit e28ebafCopy full SHA for e28ebaf
src/cssize.cpp
@@ -554,7 +554,7 @@ namespace Sass {
554
555
std::string m1 = std::string(mq1->is_restricted() ? "only" : mq1->is_negated() ? "not" : "");
556
std::string t1 = mq1->media_type() ? mq1->media_type()->to_string(ctx.c_options) : "";
557
- std::string m2 = std::string(mq2->is_restricted() ? "only" : mq1->is_negated() ? "not" : "");
+ std::string m2 = std::string(mq2->is_restricted() ? "only" : mq2->is_negated() ? "not" : "");
558
std::string t2 = mq2->media_type() ? mq2->media_type()->to_string(ctx.c_options) : "";
559
560
0 commit comments