@iris.interactive/handcook 2.9.8 → 2.9.11
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/README.md +1 -1
- package/package.json +1 -1
- package/public/styles/scss/_variables.scss +10 -6
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Welcome to HandCook 👨🍳
|
|
2
|
-

|
|
3
3
|

|
|
4
4
|
[](#)
|
|
5
5
|
[](https://twitter.com/captain\_iris)
|
package/package.json
CHANGED
|
@@ -40,12 +40,12 @@ $title-margin-bottom: 40px;
|
|
|
40
40
|
$title-margin-top-small: 40px;
|
|
41
41
|
$title-margin-bottom-small: 20px;
|
|
42
42
|
|
|
43
|
-
$block-margin-top: 60px;
|
|
44
|
-
$block-margin-top-medium:
|
|
45
|
-
$block-margin-top-small: 30px;
|
|
46
|
-
$block-margin-bottom: 60px;
|
|
47
|
-
$block-margin-bottom-medium:
|
|
48
|
-
$block-margin-bottom-small: 30px;
|
|
43
|
+
$block-margin-top: var(--iris--global--block-margin-top, 60px);
|
|
44
|
+
$block-margin-top-medium: $block-margin-top;
|
|
45
|
+
$block-margin-top-small: var(--iris--global--block-margin-top--small, 30px);
|
|
46
|
+
$block-margin-bottom: var(--iris--global--block-margin-bottom, 60px);
|
|
47
|
+
$block-margin-bottom-medium: $block-margin-bottom;
|
|
48
|
+
$block-margin-bottom-small: var(--iris--global--block-margin-bottom--small, 30px);
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
/* Margin
|
|
@@ -324,7 +324,9 @@ $popover-background-color: var(--iris--popover--background-color);
|
|
|
324
324
|
|
|
325
325
|
// Switch
|
|
326
326
|
$switch-on: var(--iris--switch--color-on);
|
|
327
|
+
$switch-text-color-on: var(--iris--switch--text-color-on);
|
|
327
328
|
$switch-off: var(--iris--switch--color-off);
|
|
329
|
+
$switch-text-color-off: var(--iris--switch--text-color-off);
|
|
328
330
|
|
|
329
331
|
// Card
|
|
330
332
|
$card-font-family: var(--iris--card--font-family);
|
|
@@ -481,6 +483,8 @@ $roadtrip-topbar-background-color: var(--iris--roadtrip-topbar--background-color
|
|
|
481
483
|
$roadtrip-topbar-link-color: var(--iris--roadtrip-topbar--color-link);
|
|
482
484
|
$roadtrip-topbar-link-color-hover: var(--iris--roadtrip-topbar--color-link-hover);
|
|
483
485
|
|
|
486
|
+
// Topito
|
|
487
|
+
$topito-number-color: var(--iris--topito-number--color, var(--iris--icon--color));
|
|
484
488
|
|
|
485
489
|
/* Global SIT
|
|
486
490
|
/ ================================================== */
|