Skip to content

Commit

Permalink
Removes console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
natalyjazzviolin committed Feb 4, 2025
1 parent ce031b2 commit a31b8a6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/Dropdown/Dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,14 @@ type DropdownSubContentProps = DropdownMenu.MenuSubContentProps &
MainDropdownProps &
ArrowProps;

console.log("Max height: ", )
const DropdownMenuContent = styled(GenericMenuPanel)`
min-width: ${({ theme }) => theme.click.genericMenu.item.size.minWidth};
flex-direction: column;
z-index: 1;
overflow-y: scroll;
max-height: calc((var(--radix-${({ $type }) => $type}-content-available-height) - 100px))
max-height: calc(
(var(--radix-${({ $type }) => $type}-content-available-height) - 100px)
);
`;

const DropdownContent = ({
Expand Down

0 comments on commit a31b8a6

Please sign in to comment.