@symbo.ls/scratch 2.10.212 → 2.10.224

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.
@@ -46,7 +46,7 @@ const applyReset = (reset = {}) => {
46
46
  return (0, import_utils.deepMerge)((0, import_utils.merge)(RESET, reset), {
47
47
  html: {
48
48
  position: "absolute",
49
- overflow: "hidden",
49
+ // overflow: 'hidden',
50
50
  width: "100%",
51
51
  height: "100%",
52
52
  top: "0",
@@ -56,6 +56,7 @@ const applyReset = (reset = {}) => {
56
56
  transform: "translate3d(0, 0, 1px)",
57
57
  scrollBehavior: "smooth",
58
58
  fontSize: TYPOGRAPHY.browserDefault + "px",
59
+ ...CONFIG.useDocumentTheme ? (0, import__.getMediaTheme)("document", `@${CONFIG.globalTheme}`) : {},
59
60
  fontFamily: DOCUMENT.fontFamily,
60
61
  lineHeight: DOCUMENT.lineHeight
61
62
  },
@@ -65,7 +66,6 @@ const applyReset = (reset = {}) => {
65
66
  margin: 0,
66
67
  fontFamily: DOCUMENT.fontFamily,
67
68
  fontSize: TYPOGRAPHY.base / TYPOGRAPHY.browserDefault + CONFIG.UNIT.default,
68
- ...CONFIG.useDocumentTheme ? (0, import__.getMediaTheme)("document", `@${CONFIG.globalTheme}`) : {},
69
69
  ...templates,
70
70
  ...body
71
71
  },
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@symbo.ls/scratch",
3
3
  "description": "Φ / CSS framework and methodology.",
4
4
  "author": "symbo.ls",
5
- "version": "2.10.212",
5
+ "version": "2.10.224",
6
6
  "files": [
7
7
  "src",
8
8
  "dist"
@@ -36,5 +36,5 @@
36
36
  "> 1%",
37
37
  "ie >= 9"
38
38
  ],
39
- "gitHead": "a0f1a0d4507e03fca0eb7103ad227919c65df6aa"
39
+ "gitHead": "2e52b799597205708abee2232881597ec1ef6310"
40
40
  }
@@ -29,7 +29,7 @@ export const applyReset = (reset = {}) => {
29
29
  return deepMerge(merge(RESET, reset), {
30
30
  html: {
31
31
  position: 'absolute',
32
- overflow: 'hidden',
32
+ // overflow: 'hidden',
33
33
  width: '100%',
34
34
  height: '100%',
35
35
  top: '0',
@@ -41,6 +41,8 @@ export const applyReset = (reset = {}) => {
41
41
 
42
42
  fontSize: TYPOGRAPHY.browserDefault + 'px',
43
43
 
44
+ ...(CONFIG.useDocumentTheme ? getMediaTheme('document', `@${CONFIG.globalTheme}`) : {}),
45
+
44
46
  fontFamily: DOCUMENT.fontFamily,
45
47
  lineHeight: DOCUMENT.lineHeight
46
48
  },
@@ -53,8 +55,6 @@ export const applyReset = (reset = {}) => {
53
55
 
54
56
  fontSize: TYPOGRAPHY.base / TYPOGRAPHY.browserDefault + CONFIG.UNIT.default,
55
57
 
56
- ...(CONFIG.useDocumentTheme ? getMediaTheme('document', `@${CONFIG.globalTheme}`) : {}),
57
-
58
58
  ...templates,
59
59
  ...body
60
60
  },