Skip to content

Commit

Permalink
Fix height style syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
hanbyul-here committed May 3, 2024
1 parent 622bd55 commit 7f51c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/components/data-catalog/filters-control.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const ControlsWrapper = styled.div<{ width?: string; height?: string }>`
width: ${props => props.width ?? '20rem'};
position: sticky;
top: 0;
${props => props.height == '100%' ? `height: props.height` : `height: calc(100vh + ${props.height}px)` };
height: ${props => props.height == '100%' ? `${props.height}` : `calc(100vh + ${props.height}px)`};
`;

interface FiltersMenuProps extends ReturnType<typeof useBrowserControls> {
Expand Down

0 comments on commit 7f51c39

Please sign in to comment.