﻿//==
// Creates grid state classes for each breakpoint.
//##
@mixin grid-state($breakpoint, $width) {
    @include bp($breakpoint) {
        .grid-state-indicator {
            width: $width;
        }
    }
}
