.scss {
@include border-radius(10px);
}
// becomes
.css {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
No longer using Compass. Going with Prepros (on Mac) with Autoprefixer enabled (so no @include needed).
.scss {
@include border-radius(10px);
}
// becomes
.css {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
No longer using Compass. Going with Prepros (on Mac) with Autoprefixer enabled (so no @include needed).