@transferwise/neptune-css 0.0.0-experimental-63cdd4d → 0.0.0-experimental-b4dbbd1
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/dist/css/accordion.css +1 -1
- package/dist/css/media.css +1 -1
- package/dist/css/neptune.css +2 -2
- package/dist/less/neptune-tokens.less +2 -2
- package/dist/props/custom-media.css +1 -1
- package/dist/props/neptune-tokens.css +1 -1
- package/package.json +2 -2
- package/src/less/core/viewport-themes.less +0 -1
- package/src/less/neptune.bundle.less +1 -0
- package/src/props/custom-media.css +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
// Do not edit directly
|
|
3
|
-
// Generated on
|
|
3
|
+
// Generated on Thu, 16 Nov 2023 10:56:40 GMT
|
|
4
4
|
|
|
5
5
|
@color-dark-content-primary: #e2e6e8;
|
|
6
6
|
@color-dark-content-secondary: #c9cbce;
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
@font-family-display: 'Wise Sans', 'Inter', sans-serif;
|
|
220
220
|
|
|
221
221
|
// Do not edit directly
|
|
222
|
-
// Generated on
|
|
222
|
+
// Generated on Thu, 16 Nov 2023 10:56:40 GMT
|
|
223
223
|
|
|
224
224
|
@color-base-blue-light: #00b9ff;
|
|
225
225
|
@color-base-blue-mid: #00a2dd;
|
|
@@ -8,4 +8,4 @@
|
|
|
8
8
|
@custom-media --screen-lg-max (max-width: 1199px); /* --screen-xl - 1 */
|
|
9
9
|
@custom-media --screen-xl (min-width: 1200px);
|
|
10
10
|
|
|
11
|
-
@custom-media --screen-400-zoom (max-width:
|
|
11
|
+
@custom-media --screen-400-zoom (max-width: 320px); /* ~400% zoom viewport */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@transferwise/neptune-css",
|
|
3
3
|
"description": "Neptune CSS library",
|
|
4
|
-
"version": "0.0.0-experimental-
|
|
4
|
+
"version": "0.0.0-experimental-b4dbbd1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"scripts"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@transferwise/neptune-tokens": "^8.
|
|
26
|
+
"@transferwise/neptune-tokens": "^8.6.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"modern-normalize": "^2.0.0",
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@import "@transferwise/neptune-tokens/tokens.css";
|
|
1
2
|
@import '@transferwise/neptune-tokens/themes/personal/tokens.css';
|
|
2
3
|
@import '@transferwise/neptune-tokens/themes/personal--forest-green/tokens.css';
|
|
3
4
|
@import '@transferwise/neptune-tokens/themes/personal--bright-green/tokens.css';
|
|
@@ -8,4 +8,4 @@
|
|
|
8
8
|
@custom-media --screen-lg-max (max-width: 1199px); /* --screen-xl - 1 */
|
|
9
9
|
@custom-media --screen-xl (min-width: 1200px);
|
|
10
10
|
|
|
11
|
-
@custom-media --screen-400-zoom (max-width:
|
|
11
|
+
@custom-media --screen-400-zoom (max-width: 320px); /* ~400% zoom viewport */
|