2018-07-30 10:26:34 +08:00

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;
}
}