forked from inuitcss/settings.responsive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_settings.responsive.scss
More file actions
25 lines (18 loc) · 838 Bytes
/
Copy path_settings.responsive.scss
File metadata and controls
25 lines (18 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
///*------------------------------------*\
// #SETTINGS-RESPONSIVE
//\*------------------------------------*/
// Hold our breakpoint aliases and conditions in a list.
//
// These can be invoked later on via the `media-query()` mixin found in
// `_tools.responsive`.
$breakpoints: (
"palm" "screen and (max-width: 719px)",
"lap" "screen and (min-width: 720px) and (max-width: 1023px)",
"lap-and-up" "screen and (min-width: 720px)",
"portable" "screen and (max-width: 1023px)",
"desk" "screen and (min-width: 1024px)",
"retina" "(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)"
) !default;
// If we have included this file, set a variable to tell the rest of the
// framework that we have some responsive settings.
$inuit-responsive-settings: true;