Responsive Design

Every utility class from littlegiant can be applied conditionally at different breakpoints.

There are four breakpoints in littlegiant

/* Small (sm) */
@media (max-width: 768px) {
/* ... */
}
/* Medium (md) */
@media (min-width: 768px) {
/* ... */
}
/* Large (lg) */
@media (min-width: 1024px) {
/* ... */
}
/* Extra Large (xl) */
@media (min-width: 1280px) {
/* ... */
}

To add a utility but only have it take effect at a certain breakpoint, all you need to do is prefix the utility with the breakpoint name, followed by the : character

Live Editor
Result
I am responsive