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 1252ad2 commit 7323c3eCopy full SHA for 7323c3e
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