2019-05-10 16:16:22 +08:00

44 lines
777 B
Plaintext

@import '../style/var';
.van-dropdown-menu {
display: flex;
height: @dropdown-menu-height;
background-color: @dropdown-menu-background-color;
user-select: none;
&__item {
display: flex;
flex: 1;
align-items: center;
justify-content: center;
&:active {
opacity: .7;
}
}
&__title {
position: relative;
font-size: @dropdown-menu-title-font-size;
&::after {
position: absolute;
top: 3px;
right: -12px;
border: 3px solid;
border-color: transparent transparent currentColor currentColor;
transform: rotate(-45deg);
opacity: .6;
content: '';
}
&--active {
&::after {
top: 7px;
transform: rotate(135deg);
opacity: 1;
}
}
}
}