fix: Contact merge dropdowns with adjusted margins-[CW-3494] (#9846)

# Pull Request Template

## Description
![CleanShot 2024-07-27 at 22 16
45@2x](https://github.com/user-attachments/assets/79a35610-1844-41cc-b006-09323892a54b)


Adjusts the margin for dropdown and sets the height to auto from
hardcoded 52px.

Fixes CW-3494

## Type of change

Please delete options that are not relevant.

- [x] Bug fix (non-breaking change which fixes an issue)

## How Has This Been Tested?

Tested locally, attached screenshot
This commit is contained in:
Fayaz Ahmed
2024-07-30 13:29:16 +05:30
committed by GitHub
parent a196e23587
commit dc9da4bb24

View File

@@ -196,7 +196,11 @@ export default {
}
.multiselect__tags {
@apply h-[52px];
@apply h-auto;
}
.multiselect__select {
@apply mt-px mr-1;
}
}
</style>