vant-weapp/app.wxss
Yao b05249d96a [breaking change] Field & Form: 新增 Field 组件 (#37)
* add input

* remove file

* 更名为 field 组件 && 增加圆角主题

* 调整 field title 宽度

* 增加 input 回调逻辑

* remove form
2017-10-26 16:03:02 +08:00

28 lines
452 B
Plaintext

@import "dist/index.wxss";
.container {
background: #F9F9F9;
overflow: hidden;
min-height: 100vh;
box-sizing: border-box;
padding: 15px 0;
}
.container::before {
position: fixed;
top: 0;
left: 0;
content: ' ';
width: 100%;
height: 1rpx;
background-color: #e2e2e2;
z-index: 5;
}
.doc-title {
font-size: 25px;
line-height: 25px;
color: #666;
padding: 15px 0;
margin: 10px 15px;
border-bottom: 1rpx solid #e5e5e5;
}