We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 73e8ccb + 72a4544 commit 3c9fbecCopy full SHA for 3c9fbec
1 file changed
packages/tailwind-clamp/lib/index.js
@@ -47,6 +47,7 @@ export default plugin.withOptions(function (options = {}) {
47
const variableDefinitions = {};
48
49
for (const [name, value] of Object.entries(clampTheme)) {
50
+ if (typeof value != 'string') continue;
51
const firstArg = value.split(',')[0];
52
if (isLengthValue(firstArg)) {
53
variableDefinitions[name] = value;
0 commit comments