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.
2 parents 75dd925 + a770a42 commit c9ca7b5Copy full SHA for c9ca7b5
‎client/packages/lowcoder/src/comps/comps/timelineComp/timelineComp.tsx
@@ -91,14 +91,15 @@ const TimelineComp = (
91
return (
92
<div
93
style={{
94
- margin: style.margin,
95
- padding: style.padding,
96
- width: widthCalculator(style.margin),
97
- height: heightCalculator(style.margin),
+ margin: style.margin ?? '3px',
+ padding: style.padding ?? '3px',
+ width: widthCalculator(style.margin ?? '3px'),
+ height: heightCalculator(style.margin ?? '3px'),
98
background: style.background,
99
overflow: "auto",
100
overflowX: "hidden",
101
borderRadius: style.radius,
102
+ //height: '100%'
103
}}
104
>
105
<Timeline
0 commit comments