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 5539920 commit 0e6d8a6Copy full SHA for 0e6d8a6
src/cssize.cpp
@@ -559,7 +559,7 @@ namespace Sass {
559
560
std::string m1 = std::string(mq1->is_restricted() ? "only" : mq1->is_negated() ? "not" : "");
561
std::string t1 = mq1->media_type() ? mq1->media_type()->to_string(ctx.c_options) : "";
562
- 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" : "");
563
std::string t2 = mq2->media_type() ? mq2->media_type()->to_string(ctx.c_options) : "";
564
565
0 commit comments