Skip to content

Commit ccfdd0b

Browse files
committed
formating removed-123
1 parent 83ed699 commit ccfdd0b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

client/packages/lowcoder/src/comps/controls/labelControl.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,19 @@ function getStyle(style: any) {
4545
`;
4646
}
4747

48-
const LabelViewWrapper = styled.div<{ $style: any, inputFieldStyle: any,$animationStyle:AnimationStyleType }>`
48+
const LabelViewWrapper = styled.div<{ $style: any, inputFieldStyle: any,$animationStyle:any }>`
4949
${(props) => {
5050
return (
5151
props.$style && {
5252
...props.$style,
5353
borderRadius: props.$style.radius,
54+
rotate: props.$style.rotation,
55+
boxShadow: `${props.$style.boxShadow} ${props.$style.boxShadowColor}`,
5456
}
5557
);
5658
}}
5759
${(props) => props.inputFieldStyle && getStyle(props.inputFieldStyle)}
58-
${(props) => props.animationStyle && props.animationStyle}
60+
${(props) => props.$animationStyle && props.$animationStyle}
5961
display: flex;
6062
flex-direction: column;
6163
height: 100%;

0 commit comments

Comments
 (0)