mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
31 lines
445 B
Plaintext
31 lines
445 B
Plaintext
@import "../common/_mixins";
|
|
|
|
.van-panel {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.van-panel__title {
|
|
font-size: 14px;
|
|
line-height: 1;
|
|
color: #999;
|
|
padding: 20px 15px 10px 15px;
|
|
}
|
|
|
|
.van-panel__content {
|
|
position: relative;
|
|
background: #fff;
|
|
overflow: hidden;
|
|
&::after {
|
|
@mixin hairline;
|
|
border-top-width: 1px;
|
|
border-bottom-width: 1px;
|
|
}
|
|
}
|
|
|
|
.van-panel--without-border {
|
|
&::after {
|
|
border: 0 none;
|
|
}
|
|
}
|