Skip to content

Commit 3e390e5

Browse files
committed
Fixed collapsed card height issue
1 parent 097b4fa commit 3e390e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/LeftColExpansionPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const LeftColExpansionPanel = (props: LeftColExpPanPropsInt) => {
8080
{/* {This is the component responsible for the collapsing transition animation for each component card} */}
8181
<Collapse
8282
in={focusedToggle}
83-
collapsedHeight={'70px'} //The type for the Collapse component is asking for a string, but if you put in a string and not a number, the component itself breaks.
83+
collapsedHeight={'80px'} //The type for the Collapse component is asking for a string, but if you put in a string and not a number, the component itself breaks.
8484
style={{ borderRadius: '5px' }}
8585
timeout={500}
8686
>

0 commit comments

Comments
 (0)