fu-kit 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/scss-kit/media.scss +2 -2
package/package.json
CHANGED
package/src/scss-kit/media.scss
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
$ui-media-breakpoints: (
|
|
2
|
-
xs: 812px,
|
|
2
|
+
xs: 812px, // everything at this point and below is a mobile. (<= iphoneX)
|
|
3
3
|
sm: 1200px, // everything equal or below can be considered as a tablet.
|
|
4
4
|
md: 1440px, // ~15" laptop display and below.
|
|
5
|
-
|
|
5
|
+
// everything else above is a ~17" laptop or a large screen. (default)
|
|
6
6
|
) !default;
|
|
7
7
|
|
|
8
8
|
@mixin respond-below($breakpoint) {
|