From dc9da4bb24c072149d78b8b0a71449834aa6381a Mon Sep 17 00:00:00 2001 From: Fayaz Ahmed Date: Tue, 30 Jul 2024 13:29:16 +0530 Subject: [PATCH] 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 --- .../dashboard/modules/contact/components/MergeContact.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/javascript/dashboard/modules/contact/components/MergeContact.vue b/app/javascript/dashboard/modules/contact/components/MergeContact.vue index f75927fd6..c14ebd261 100644 --- a/app/javascript/dashboard/modules/contact/components/MergeContact.vue +++ b/app/javascript/dashboard/modules/contact/components/MergeContact.vue @@ -196,7 +196,11 @@ export default { } .multiselect__tags { - @apply h-[52px]; + @apply h-auto; + } + + .multiselect__select { + @apply mt-px mr-1; } }