added grid for all requested wines, also added new media-breakpoints
This commit is contained in:
@@ -16,3 +16,24 @@ $mobile-width: 768px;
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
$sm: 320;
|
||||
$md: 756;
|
||||
$lg: 1200;
|
||||
$xl: 1704;
|
||||
|
||||
$minMobileWidth: $sm + 0px;
|
||||
$maxMobileWidth: $md - 1px;
|
||||
$minTabletWidth: $md + 0px;
|
||||
$maxTabletWidth: $lg - 1px;
|
||||
$minDesktopWidth: $lg + 0px;
|
||||
$maxDesktopWidth: $xl - 1px;
|
||||
$minWidescreenWidth: $xl + 0px;
|
||||
|
||||
$mobileOnly: "only screen and ( max-width: #{$maxMobileWidth} )";
|
||||
$tabletOnly: "only screen and( min-width: #{$minTabletWidth} ) and ( max-width: #{$maxTabletWidth} )";
|
||||
$desktopOnly: "only screen and ( min-width: #{$minDesktopWidth} ) and ( max-width: #{$maxDesktopWidth} )";
|
||||
$widescreenOnly: "only screen and ( min-width: #{$minWidescreenWidth} )";
|
||||
$tabletAndUp: "only screen and ( min-width: #{$minTabletWidth} )";
|
||||
$desktopAndUp: "only screen and ( min-width: #{$minDesktopWidth} )";
|
||||
$widescreenAndUp: "only screen and ( min-width: #{$minWidescreenWidth} )";
|
||||
Reference in New Issue
Block a user