react-select-custom-component
Version:
A highly customizable React dropdown component based on React Select, providing flexible and lightweight select input options.
25 lines (20 loc) • 442 B
CSS
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.multiple-select-list::-webkit-scrollbar {
width: 4px;
}
.multiple-select-list::-webkit-scrollbar-thumb {
background-color: rgb(214, 214, 214);
}
.multiple-select-list-items>div::-webkit-scrollbar {
width: 4px;
}
.multiple-select-list-items>div::-webkit-scrollbar-thumb {
background-color: rgb(214, 214, 214);
}