Skip to content

Commit

Permalink
[fix] Fixed effect panel width (#2644)
Browse files Browse the repository at this point in the history
Signed-off-by: Ihor Dykhta <dikhta.igor@gmail.com>
  • Loading branch information
igorDykhta authored Sep 12, 2024
1 parent 04280b3 commit f15be57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/src/effects/effect-manager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const StyledEffectPanel = styled.div`

const StyledEffectPanelHeader = styled.div`
padding: ${({theme}) =>
`${theme.effectPanelPaddingTop}px ${theme.effectPanelPaddingSide}px 4px ${theme.effectPanelPaddingSide}px}`};
`${theme.effectPanelPaddingTop}px ${theme.effectPanelPaddingSide}px 4px ${theme.effectPanelPaddingSide}px`};
border-bottom: 1px solid ${props => props.theme.borderColor};
min-width: ${({theme}) => theme.effectPanelWidth}px;
`;
Expand Down

0 comments on commit f15be57

Please sign in to comment.