matcha-theme 18.1.43 → 18.1.45
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
CHANGED
package/tokens/_breakpoints.scss
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
// Media step breakpoint mixin based on Angular Material lib
|
|
2
2
|
$breakpoints: (
|
|
3
3
|
xs: 'screen and (max-width: 599px)',
|
|
4
|
-
sm: 'screen and (min-width: 600px) and (max-width:
|
|
5
|
-
md: 'screen and (min-width:
|
|
4
|
+
sm: 'screen and (min-width: 600px) and (max-width: 1359px)',
|
|
5
|
+
md: 'screen and (min-width: 1360px) and (max-width: 1439px)',
|
|
6
6
|
lg: 'screen and (min-width: 1440px) and (max-width: 1919px)',
|
|
7
7
|
xl: 'screen and (min-width: 1920px) and (max-width: 5000px)',
|
|
8
8
|
lt-sm: 'screen and (max-width: 599px)',
|
|
9
|
-
lt-md: 'screen and (max-width:
|
|
9
|
+
lt-md: 'screen and (max-width: 1359px)',
|
|
10
10
|
lt-lg: 'screen and (max-width: 1439px)',
|
|
11
11
|
lt-xl: 'screen and (max-width: 1919px)',
|
|
12
12
|
gt-xs: 'screen and (min-width: 600px)',
|
|
13
|
-
gt-sm: 'screen and (min-width:
|
|
14
|
-
gt-md: 'screen and (min-width: 1440px)',
|
|
13
|
+
gt-sm: 'screen and (min-width: 1360px)',
|
|
14
|
+
gt-md: 'screen and (min-width: 1440px)',
|
|
15
15
|
gt-lg: 'screen and (min-width: 1920px)'
|
|
16
16
|
) !default;
|
|
17
17
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
$elevation-transition-duration: 280ms !default;
|
|
3
3
|
|
|
4
4
|
// The default easing value for elevation transitions.
|
|
5
|
-
$elevation-transition-timing-function:
|
|
5
|
+
$elevation-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !default;
|
|
6
6
|
|
|
7
7
|
// The default color for elevation shadows.
|
|
8
8
|
$elevation-color: black !default;
|