环卫车小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

65 lines
684 B

* {
-webkit-overflow-scrolling: touch;
-webkit-touch-callout: text;
-webkit-user-select: text;
user-select: text;
// touch-action: pan-y;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
* {
&:hover,
&:focus,
&:active {
outline: none;
}
}
html {
height: 100%;
// overflow: hidden;
}
body {
height: 100%;
background-color: #f5f5f5;
color: #333333;
}
ul,
li,
ol {
list-style: none;
}
img,
button,
input,
textarea {
border: none;
outline: none;
resize: none;
}
img {
display: block;
}
a {
text-decoration: none;
}
// iframe {
// display: none;
// }
#app {
height: 100%;
font-size: 28rpx;
word-break: break-all;
}