// Extra small devices (portrait phones, less than 576px) @media (max-width: $xs_breakdown) { } // Small devices (landscape phones, 576px and up) @media (min-width: $xs_breakdown + 1) and (max-width: $sm_breakdown) { } // Medium devices (tablets, 768px and up) @media (min-width: $sm_breakdown + 1) and (max-width: $md_breakdown) { } // Large devices (desktops, 992px and up) @media (min-width: $md_breakdown + 1) and (max-width: $lg_breakdown) { } // Extra large devices (large desktops, 1200px and up) @media (min-width: $xl_breakdown) { }