mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-27 03:46:35 +08:00
32 lines
476 B
CSS
32 lines
476 B
CSS
@import './common/var.css';
|
|
|
|
.van-collapse-item {
|
|
&__title {
|
|
.van-cell__right-icon::before {
|
|
transition: .3s;
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
&::after {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
padding: 15px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
&--expanded {
|
|
.van-collapse-item__title {
|
|
.van-cell__right-icon::before {
|
|
transform: rotate(-90deg);
|
|
}
|
|
|
|
&::after {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
}
|
|
}
|