matcha-core 1.1.19 → 1.1.21
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/core.scss +8 -8
- package/matcha-core.css +3211 -139
- package/matcha-core.min.css +1 -1
- package/package.json +1 -1
package/core.scss
CHANGED
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
// Media step breakpoint mixin based on Angular Material lib
|
|
23
23
|
$breakpoints: (
|
|
24
24
|
xs: 'screen and (max-width: 599px)',
|
|
25
|
-
sm: 'screen and (min-width: 600px) and (max-width:
|
|
26
|
-
md: 'screen and (min-width:
|
|
25
|
+
sm: 'screen and (min-width: 600px) and (max-width: 1023px)',
|
|
26
|
+
md: 'screen and (min-width: 1024px) and (max-width: 1439px)',
|
|
27
27
|
lg: 'screen and (min-width: 1440px) and (max-width: 1919px)',
|
|
28
28
|
xl: 'screen and (min-width: 1920px) and (max-width: 5000px)',
|
|
29
29
|
lt-sm: 'screen and (max-width: 599px)',
|
|
30
|
-
lt-md: 'screen and (max-width:
|
|
30
|
+
lt-md: 'screen and (max-width: 1023px)',
|
|
31
31
|
lt-lg: 'screen and (max-width: 1439px)',
|
|
32
32
|
lt-xl: 'screen and (max-width: 1919px)',
|
|
33
|
-
gt-xs: 'screen and (min-width: 600px)',
|
|
34
|
-
gt-sm: 'screen and (min-width:
|
|
35
|
-
gt-md: 'screen and (min-width: 1440px)',
|
|
33
|
+
gt-xs: 'screen and (min-width: 600px)',
|
|
34
|
+
gt-sm: 'screen and (min-width: 1024px)',
|
|
35
|
+
gt-md: 'screen and (min-width: 1440px)',
|
|
36
36
|
gt-lg: 'screen and (min-width: 1920px)'
|
|
37
37
|
) !default;
|
|
38
38
|
|
|
@@ -715,8 +715,8 @@ $base-font-size: 16px;
|
|
|
715
715
|
$infix: if($materialBreakpoint == null, "", "-#{$breakpoint}");
|
|
716
716
|
|
|
717
717
|
$index: 0;
|
|
718
|
-
@while $index <=
|
|
719
|
-
$height: $index *
|
|
718
|
+
@while $index <= 100 {
|
|
719
|
+
$height: $index * 1;
|
|
720
720
|
|
|
721
721
|
.lh#{$infix}-#{$height} {
|
|
722
722
|
line-height: #{$height}px;
|