PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.4
Booking for Appointments and Events Calendar – Amelia v2.4.4
2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / v3 / src / assets / scss / common / variables / _breakpoints.scss
ameliabooking / v3 / src / assets / scss / common / variables Last commit date
_breakpoints.scss 5 days ago _variables-fonts.scss 5 days ago
_breakpoints.scss
65 lines
1 // Breakpoints
2 //using on down mixins
3 $am-xsmall-max: 374px;
4 $am-small-max: 767px;
5 $am-medium-max: 991px;
6 $am-large-max: 1199px;
7 $am-xlarge-max: 1919px;
8
9 //using on up mixins
10 $am-xsmall-min: 375px;
11 $am-small-min: 768px;
12 $am-medium-min: 992px;
13 $am-large-min: 1200px;
14 $am-xlarge-min: 1920px;
15
16 $tablet: 1024px;
17 $phone: 768px;
18
19 // Media Mixins
20 @mixin media-breakpoint-down($breakpoint) {
21 @if $breakpoint {
22 @media only screen and (max-width: $breakpoint) {
23 @content;
24 }
25 }
26 }
27
28 @mixin media-breakpoint-up($breakpoint) {
29 @if $breakpoint {
30 @media only screen and (min-width: $breakpoint) {
31 @content;
32 }
33 }
34 }
35
36 @mixin tablet-up {
37 @media only screen and (min-width: $tablet) {
38 @content;
39 }
40 }
41
42 @mixin tablet-down {
43 @media only screen and (max-width: $tablet) {
44 @content;
45 }
46 }
47
48 @mixin tablet-only {
49 @media only screen and (max-width: $tablet) and (min-width: $phone + 1) {
50 @content;
51 }
52 }
53
54 @mixin phone-up {
55 @media only screen and (min-width: $phone + 1) {
56 @content;
57 }
58 }
59
60 @mixin phone-down {
61 @media only screen and (max-width: $phone) {
62 @content;
63 }
64 }
65