@import "../src/bootstrap-mini.scss";

.title-header {
    color: blue;
}
@include breakpoint(desk) {
    .title-header {
        color: red;
    }
}
@include breakpoint(tab) {
    .title-header {
        color: red;
    }
}
@include breakpoint(mob) {
    .title-header {
        color: purple;
    }
}
@include breakpoint(mobile) {
    .title-header {
        color: purple;
    }
}

@include breakpoint(0, 1800) {
    .title-header {
        color: green;
    }
}

@include breakpoint(0, "max-width: 500px") {
    .title-header {
        color: white;
    }
}

@include breakpoint(605) {
    .title-header {
        color: green;
    }
}
@include breakpoint("max-width: 500px") {
    .title-header {
        color: green;
    }
}
@include breakpoint("(max-width: 500px) and (min-width: 300px)") {
    .title-header {
        color: green;
    }
}
