mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* change example dir * Update README.md 更新预览教程 * 新增 layout 组件 * exclude example * change .wxss -> .pcss * 脚本目录更名为 scripts
18 lines
330 B
Plaintext
18 lines
330 B
Plaintext
.zan-toast {
|
|
position: fixed;
|
|
top: 35%;
|
|
left: 20%;
|
|
transform: translateZ(0) translateY(-100%);
|
|
background: rgba(0, 0, 0, 0.7);
|
|
color: #fff;
|
|
font-size: 14px;
|
|
width: 60%;
|
|
line-height: 1.5em;
|
|
margin: 0 auto;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
text-align: center;
|
|
border-radius: 4px;
|
|
z-index: 100;
|
|
}
|