ayovue
Version:
A progressive vue components library designed to simplify and accelerate your web development process.
37 lines (36 loc) • 677 B
CSS
.a-select {
cursor: pointer;
}
.a-select:focus {
}
.a-select .a-select-field {
cursor: pointer;
}
.a-select .a-select-dropdown {
position: absolute;
top: calc(100% + 3px);
left: 0;
right: 0;
overflow-y: auto;
z-index: 9;
}
.a-select .a-select-dropdown-top {
top: auto;
bottom: calc(100% + 3px);
}
.a-select .a-select-option {
display: block;
border: none;
background: none;
width: 100%;
text-align: left;
}
.a-select .a-select-arrow {
width: 0;
height: 0;
}
.a-select .a-select-dropdown-fixed {
padding: 4px 0;
overflow-y: auto;
scroll-behavior: smooth;
}