Browse Source

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

pull/7148/head
Ramesh Mane 7 months ago
parent
commit
10b80a10e8
  1. 1
      packages/nc-gui/assets/style.scss
  2. 2
      packages/nc-gui/components/nc/Dropdown.vue

1
packages/nc-gui/assets/style.scss

@ -600,7 +600,6 @@ a {
.nc-toolbar-dropdown {
@apply !rounded-2xl;
@apply !border-gray-200
}
input[type='number'] {

2
packages/nc-gui/components/nc/Dropdown.vue

@ -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}`
}

Loading…
Cancel
Save