-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathb_mq_utils.scss
43 lines (36 loc) · 857 Bytes
/
b_mq_utils.scss
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* ==========================================================================
Media queries Utilities
========================================================================== */
$grid-breakpoints: (
// Extra small screen / phone
xs: 0,
// Small screen / phone
sm: 544px,
// Medium screen / tablet
md: 768px,
// Large screen / desktop
lg: 992px,
// Extra large screen / wide desktop
xl: 1200px
) !default;
// Grid containers
//
// Define the maximum width of `.container` for different screen sizes.
$container-max-widths: (
sm: 576px,
md: 720px,
lg: 940px,
xl: 1140px
) !default;
//Media queries start points
$mqPhone: 0px;
$mqPhablet: 481px;
$mqTablet: 768px;
$mqDesktop: 992px;
$mqWideScreen: 1200px;
//Mobile first
@mixin mobile-xs () {
@media screen and (max-width: $mqSmartphone) {
@content;
}
}