Is there any way to add a 5th breakpont to 4 that already exist? Unfortunaetly, 4 is not enough for a project we currenty work on. the idea was to create a new break point s
I use this in my project:
@media (min-width: 1600px) { @for $i from 1 through 12 { $width: $i / 12 * 100; .col-xl-#{$i} { width: unquote($width + '%'); float: left; } } }