Skip to content

Commit

Permalink
Remove the popup placement transition
Browse files Browse the repository at this point in the history
  • Loading branch information
michaldudak committed Jan 17, 2024
1 parent 9872f26 commit a61059d
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ function Styles() {
}
.CustomSelectIntroduction-popup {
z-index: 1;
transition: transform 150ms ease;
}
.CustomSelectIntroduction-option {
list-style: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ function Styles() {
}
.CustomSelectIntroduction-popup {
z-index: 1;
transition: transform 150ms ease;
}
.CustomSelectIntroduction-option {
list-style: none;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,5 +232,4 @@ const Option = styled(BaseOption)(

const Popup = styled('div')`
z-index: 1;
transition: transform 150ms ease;
`;
Original file line number Diff line number Diff line change
Expand Up @@ -230,5 +230,4 @@ const Option = styled(BaseOption)(

const Popup = styled('div')`
z-index: 1;
transition: transform 150ms ease;
`;
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const Select = React.forwardRef(function CustomSelect(props, ref) {
return {
...resolvedSlotProps,
className: clsx(
`${isDarkMode ? 'dark' : ''} z-10 transition-transform`,
`${isDarkMode ? 'dark' : ''} z-10x`,
resolvedSlotProps?.className,
),
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const Select = React.forwardRef(function CustomSelect<
return {
...resolvedSlotProps,
className: clsx(
`${isDarkMode ? 'dark' : ''} z-10 transition-transform`,
`${isDarkMode ? 'dark' : ''} z-10x`,
resolvedSlotProps?.className,
),
};
Expand Down

0 comments on commit a61059d

Please sign in to comment.