SASS: wygenerowany CSS nie jest optymalny

Próbuję nauczyć się SASS. Mam ten fragment kodu, ale moim zdaniem wygenerowany css jest okropny. Chciałbym, aby wszystkie te css trafiły w te same .container {}. Nie trzy różne, jak pokazano poniżej.

SASS:

   .container{
         @extend %clearfix;
         @extend %text-truncate;
         @include border-radius(10px);
     }

Genereted css:

.container{
...clear fix
}
.container{
...text-truncate
}
.container{
...clear border-radius
}

Czego chcę:

.container{
...clear fix
...text-truncat
...clear border-radius
}

questionAnswers(1)

yourAnswerToTheQuestion