mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
28 lines
242 B
CSS
28 lines
242 B
CSS
/**
|
|
* 基本样式入口
|
|
*/
|
|
|
|
html {
|
|
-webkit-tap-highlight-color: transparent;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a,
|
|
input,
|
|
button,
|
|
textarea {
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
ol,
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|