mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* add input * remove file * 更名为 field 组件 && 增加圆角主题 * 调整 field title 宽度 * 增加 input 回调逻辑 * remove form
28 lines
452 B
Plaintext
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;
|
|
}
|