// Hover and focus shortcut

@mixin hover {
    &:hover,
    &:focus {
        @content;
    }
}
