I'm really struggling to understand the purpose behind using $fix-mqs
in the mentioned link:
Although I can grasp how the rest of the mixin functions, this particular part has me stumped. In a project where I've utilized this pattern, everything seems to function properly if I simply overlook it and insert a fixed width in an old-ie include on the body or a general wrapper element, like so:
.l-wrapper {
@include old-ie {
width: 960px;
}
}
Consequently, my question remains - what exactly is the intended use of $fix-mqs
and what is its specific purpose?