fix: change all dropdown border colour from gray-100 to gray-200

This commit is contained in:
Ramesh Mane
2023-12-05 00:03:18 +05:30
parent 8657c0f3fc
commit 10b80a10e8
2 changed files with 1 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ const overlayClassName = toRef(props, 'overlayClassName')
const autoClose = computed(() => props.autoClose)
const overlayClassNameComputed = computed(() => {
let className = 'nc-dropdown bg-white rounded-lg border-1 border-gray-100 shadow-lg'
let className = 'nc-dropdown bg-white rounded-lg border-1 border-gray-200 shadow-lg'
if (overlayClassName.value) {
className += ` ${overlayClassName.value}`
}