File tree 1 file changed +4
-2
lines changed
client/packages/lowcoder/src/comps/controls
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -45,17 +45,19 @@ function getStyle(style: any) {
45
45
` ;
46
46
}
47
47
48
- const LabelViewWrapper = styled . div < { $style : any , inputFieldStyle : any , $animationStyle :AnimationStyleType } > `
48
+ const LabelViewWrapper = styled . div < { $style : any , inputFieldStyle : any , $animationStyle :any } > `
49
49
${ ( props ) => {
50
50
return (
51
51
props . $style && {
52
52
...props . $style ,
53
53
borderRadius : props . $style . radius ,
54
+ rotate : props . $style . rotation ,
55
+ boxShadow : `${ props . $style . boxShadow } ${ props . $style . boxShadowColor } ` ,
54
56
}
55
57
) ;
56
58
} }
57
59
${ ( props ) => props . inputFieldStyle && getStyle ( props . inputFieldStyle ) }
58
- ${ ( props ) => props . animationStyle && props . animationStyle }
60
+ ${ ( props ) => props . $ animationStyle && props . $ animationStyle}
59
61
display: flex;
60
62
flex-direction: column;
61
63
height: 100%;
You can’t perform that action at this time.
0 commit comments