We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf654d commit 838aa71Copy full SHA for 838aa71
components/_util/cssinjs/transformers/legacyLogicalProperties.ts
@@ -16,14 +16,14 @@ function splitValues(value: string | number) {
16
temp += item;
17
brackets += item.split('(').length - 1;
18
} else if (item.includes(')')) {
19
- temp += item;
+ temp += ` ${item}`;
20
brackets -= item.split(')').length - 1;
21
if (brackets === 0) {
22
list.push(temp);
23
temp = '';
24
}
25
} else if (brackets > 0) {
26
27
} else {
28
list.push(item);
29
0 commit comments