36 lines
580 B
SCSS
36 lines
580 B
SCSS
.vpf-component-select {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.vpf-component-select-option-img {
|
|
position: relative;
|
|
display: block;
|
|
width: 30px;
|
|
height: 30px;
|
|
margin-right: 10px;
|
|
overflow: hidden;
|
|
background-color: rgba(0, 0, 0, 10%);
|
|
border-radius: 3px;
|
|
|
|
img {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
|
|
.vpf-component-select-option-label {
|
|
margin-right: auto;
|
|
}
|
|
|
|
.vpf-component-select-option-category {
|
|
padding: 2px 10px;
|
|
margin-left: 10px;
|
|
background-color: rgba(0, 0, 0, 10%);
|
|
border-radius: 3px;
|
|
}
|