We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent83ed699 commitccfdd0bCopy full SHA for ccfdd0b
client/packages/lowcoder/src/comps/controls/labelControl.tsx
@@ -45,17 +45,19 @@ function getStyle(style: any) {
45
`;
46
}
47
48
-constLabelViewWrapper=styled.div<{$style:any,inputFieldStyle:any,$animationStyle:AnimationStyleType}>`
+constLabelViewWrapper=styled.div<{$style:any,inputFieldStyle:any,$animationStyle:any}>`
49
${(props)=>{
50
return(
51
props.$style&&{
52
...props.$style,
53
borderRadius:props.$style.radius,
54
+rotate:props.$style.rotation,
55
+boxShadow:`${props.$style.boxShadow}${props.$style.boxShadowColor}`,
56
57
);
58
}}
59
${(props)=>props.inputFieldStyle&&getStyle(props.inputFieldStyle)}
-${(props)=>props.animationStyle&&props.animationStyle}
60
+${(props)=>props.$animationStyle&&props.$animationStyle}
61
display: flex;
62
flex-direction: column;
63
height: 100%;