Skip to content
Snippets Groups Projects
_breakpoint.scss 542 B
Newer Older
  • Learn to ignore specific revisions
  • Hugo NOUTS's avatar
    Hugo NOUTS committed
    $width-small-phone: 320px;
    $width-phone: 576px;
    $width-large-phone: 768px;
    $width-tablet: 1023px;
    $width-desktop: 1200px;
    $width-large-desktop: 1201px;
    
    
    $small-phone: "only screen and (max-width : #{$width-small-phone})";
    $phone: "only screen and (max-width : #{$width-phone})";
    $large-phone: "only screen and (max-width : #{$width-large-phone})";
    $tablet: "only screen and (max-width : #{$width-tablet})";
    $desktop: "only screen and (max-width : #{$width-desktop})";
    $large-desktop: "only screen and (min-width : #{$width-large-desktop})";