Média Querry

PHOTO EMBED

Tue Feb 14 2023 08:07:38 GMT+0000 (Coordinated Universal Time)

Saved by @Sumnifer #css

    // Small tablets and large smartphones (landscape view)
    $screen-sm-min: 576px;
     
    // Small tablets (portrait view)
    $screen-md-min: 768px;
     
    // Tablets and small desktops
    $screen-lg-min: 992px;
     
    // Large tablets and desktops
    $screen-xl-min: 1200px;
     
     
    // Small devices
    @mixin sm {
       @media (min-width: #{$screen-sm-min}) {
           @content;
       }
    }
     
    // Medium devices
    @mixin md {
       @media (min-width: #{$screen-md-min}) {
           @content;
       }
    }
     
    // Large devices
    @mixin lg {
       @media (min-width: #{$screen-lg-min}) {
           @content;
       }
    }
     
    // Extra large devices
    @mixin xl {
       @media (min-width: #{$screen-xl-min}) {
           @content;
       }
    }

content_copyCOPY