I am getting started with Compass and Susy. My goal is to make my layout adapt to phone, tablet, and desktop screen sizes. In the Susy examples (susy.oddbird.net or SO question), there is a pattern of having the number of columns adapt to the screen size. Specifically, there are nested rules like these:
.container {
@include container;
@include desktop {
@include container;
}
}
My questions now: What does the container { @include container } do? And, why is it nested again in the desktop include?