Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 826b161 commit f760ba6Copy full SHA for f760ba6
‎client/packages/lowcoder/src/comps/comps/transferComp.tsx
@@ -28,6 +28,12 @@ const Container = styled.div<{ $style: TransferStyleType }>`
28
const getStyle = (style: TransferStyleType) => {
29
return css`
30
margin: ${style.margin};
31
+ padding: ${style.padding};
32
+ border-style: ${style.borderStyle};
33
+ border-width: ${style.borderWidth};
34
+ border-color: ${style.border};
35
+ background: ${style.background};
36
+ border-radius: ${style.radius};
37
max-width: ${widthCalculator(style.margin)};
38
max-height: ${heightCalculator(style.margin)};
39
`;
0 commit comments