salix/client/core/src/drop-down/style.scss

20 lines
406 B
SCSS
Raw Normal View History

vn-drop-down {
position: absolute;
z-index: 9999;
ul{
padding: 0;
margin: 10px 0 0 0;
background: white;
border: 1px solid #A7A7A7;
li {
list-style-type: none;
padding: 5px 20px 5px 5px;
cursor: pointer;
}
li:hover{
background-color: #3D3A3B;
color: white;
}
}
}