This mixin is perfect to use in your Bootstrap project. It is using the default sizes
@import 'at-break';
.col {
width: 100%;
@include at-small { width: 50%; }
@include at-medium { width: 33%; }
@include at-large { width: 25%; }
}
.col {
width: 100%;
}
@media (min-width: 768px) {
.col {
width: 50%;
}
}
@media (min-width: 992px) {
.col {
width: 33%;
}
}
@media (min-width: 1200px) {
.col {
width: 25%;
}
}
View on GitHub