We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6478eca commit 9b9473dCopy full SHA for 9b9473d
1 file changed
packages/uniwind/src/metro/processor/css.ts
@@ -397,6 +397,12 @@ export class CSS {
397
}
398
399
400
+ if ('keyword' in declarationValue) {
401
+ return declarationValue.keyword === 'auto' || declarationValue.keyword === 'pointer'
402
+ ? declarationValue.keyword
403
+ : 'auto'
404
+ }
405
+
406
this.logUnsupported(`Unsupported value - ${JSON.stringify(declarationValue)}`)
407
408
return ''
0 commit comments