@symbo.ls/scratch 0.3.1 → 0.3.2
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 +1 -1
- package/src/methods/set.js +4 -2
package/package.json
CHANGED
package/src/methods/set.js
CHANGED
|
@@ -196,7 +196,7 @@ const setFontFamily = (val, key) => {
|
|
|
196
196
|
return { var: CSSvar, value: str, arr: value, type }
|
|
197
197
|
}
|
|
198
198
|
|
|
199
|
-
const
|
|
199
|
+
const setSameValue = (val, key) => {
|
|
200
200
|
return val
|
|
201
201
|
}
|
|
202
202
|
|
|
@@ -206,7 +206,9 @@ export const SETTERS = {
|
|
|
206
206
|
font: setFont,
|
|
207
207
|
font_family: setFontFamily,
|
|
208
208
|
theme: setTheme,
|
|
209
|
-
typography:
|
|
209
|
+
typography: setSameValue,
|
|
210
|
+
spacing: setSameValue,
|
|
211
|
+
responsive: setSameValue
|
|
210
212
|
}
|
|
211
213
|
|
|
212
214
|
/**
|