@codecademy/gamut-styles 17.6.1-alpha.d1acf0.0 → 17.6.1
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 +2 -2
- package/utils/index.scss +3 -3
- package/utils/mixins/_responsive.scss +1 -0
- package/utils/mixins/index.scss +6 -6
- package/utils/variables/index.scss +5 -5
- package/utils.scss +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codecademy/gamut-styles",
|
|
3
3
|
"description": "Styleguide & Component library for codecademy.com",
|
|
4
|
-
"version": "17.6.1
|
|
4
|
+
"version": "17.6.1",
|
|
5
5
|
"author": "Jake Hiller <jake@codecademy.com>",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@codecademy/variance": "0.22.1",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"scripts": {
|
|
36
36
|
"build": "nx build @codecademy/gamut-styles"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "801212973707f01ab897b4a26d04643411e3b0c8"
|
|
39
39
|
}
|
package/utils/index.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// import order is unfortunately important here
|
|
2
2
|
// variables needs to access functions, and mixins needs to access variables
|
|
3
|
-
@
|
|
4
|
-
@
|
|
5
|
-
@
|
|
3
|
+
@forward "functions/index";
|
|
4
|
+
@forward "variables/index";
|
|
5
|
+
@forward "mixins/index";
|
package/utils/mixins/index.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
4
|
-
@
|
|
5
|
-
@
|
|
6
|
-
@
|
|
1
|
+
@forward "font-smoothing";
|
|
2
|
+
@forward "no-select";
|
|
3
|
+
@forward "responsive";
|
|
4
|
+
@forward "shadow";
|
|
5
|
+
@forward "sr-only";
|
|
6
|
+
@forward "legacy";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
3
|
-
@
|
|
4
|
-
@
|
|
5
|
-
@
|
|
1
|
+
@forward "colors";
|
|
2
|
+
@forward "base";
|
|
3
|
+
@forward "grid";
|
|
4
|
+
@forward "typography";
|
|
5
|
+
@forward "responsive";
|
package/utils.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@forward "utils/index";
|