-
-
Notifications
You must be signed in to change notification settings - Fork 158
Closed
Description
I have the Issue that Lost (in a LibSass > PostCSS Pipe) generate too much Code. Lost Version: 6.7.1
.testimonial {
&__blubb {
.testimonial__content__image {
lost-column: 3/4;
}
.testimonial__content__body {
lost-column: 6/10;
}
}
}Result
.testimonial__blubb .testimonial__content__image {
width: calc(99.99% * 3/4 - (30px - 30px * 3/4)); }
.testimonial__blubb .testimonial__content__image:nth-child(1n){
float: left;
margin-right: 30px;
clear: none; }
.testimonial__blubb .testimonial__content__image:last-child{
margin-right: 0; }
.testimonial__blubb .testimonial__content__image:nth-child(4n){
float: right; }
.testimonial__blubb .testimonial__content__image:nth-child(4n){
margin-right: 0; }
.testimonial__blubb .testimonial__content__image:nth-child(4n + 1){
clear: left; }
.testimonial__blubb .testimonial__content__body {
width: calc(99.99% * 6/10 - (30px - 30px * 6/10)); }
.testimonial__blubb .testimonial__content__body:nth-child(1n){
float: left;
margin-right: 30px;
clear: none; }
.testimonial__blubb .testimonial__content__body:last-child{
margin-right: 0; }
.testimonial__blubb .testimonial__content__body:nth-child(10n){
float: right; }
.testimonial__blubb .testimonial__content__body:nth-child(10n){
margin-right: 0; }
.testimonial__blubb .testimonial__content__body:nth-child(10n + 1){
clear: left; }Reactions are currently unavailable