Refactor #3965 - Refactor on Dropdown

This commit is contained in:
Tuğçe Küçükoğlu 2023-06-22 16:06:28 +03:00
parent 22e6c7a53e
commit ff403897d2
2 changed files with 2 additions and 6 deletions

View file

@ -6,6 +6,7 @@ const styles = `
.p-dropdown {
display: inline-flex;
cursor: pointer;
position: relative;
user-select: none;
}
@ -96,10 +97,6 @@ input.p-dropdown-label {
}
`;
const inlineStyles = {
root: ({ props }) => ({ position: props.appendTo === 'self' ? 'relative' : undefined })
};
const classes = {
root: ({ props, state }) => [
'p-dropdown p-component p-inputwrapper',
@ -309,7 +306,6 @@ export default {
}
},
css: {
inlineStyles,
classes,
loadStyle
},