@symbo.ls/scratch 0.7.31 → 0.7.32

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
@@ -2,7 +2,7 @@
2
2
  "name": "@symbo.ls/scratch",
3
3
  "description": "Φ / CSS framework and methodology.",
4
4
  "author": "symbo.ls",
5
- "version": "0.7.31",
5
+ "version": "0.7.32",
6
6
  "files": [
7
7
  "src"
8
8
  ],
@@ -225,12 +225,9 @@ export const getMediaTheme = (val, mod) => {
225
225
  return
226
226
  }
227
227
 
228
- console.group(val)
229
-
230
228
  const [name, ...modifier] = isArray(val) ? val : val.split(' ')
231
229
  let value = CONFIG.THEME[name]
232
230
  if (value && (modifier || mod)) {
233
- console.log(value)
234
231
  value = findModifier(value, modifier.length ? modifier : mod)
235
232
  }
236
233