48 lines
569 B
SCSS
48 lines
569 B
SCSS
/*
|
|
公共样式
|
|
*/
|
|
// 引入颜色配置
|
|
@import './_color.scss';
|
|
|
|
.test {
|
|
width: 600rpx;
|
|
height: 600rpx;
|
|
background: orange;
|
|
}
|
|
|
|
* {
|
|
font-family: Helvetica Neue,
|
|
Helvetica,
|
|
Arial,
|
|
sans-serif,
|
|
Verdana,
|
|
Geneva,
|
|
Tahoma,
|
|
sans-serif;
|
|
}
|
|
|
|
/*隐藏滚动条*/
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
color: transparent;
|
|
display: none;
|
|
}
|
|
|
|
scroll-view {
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.no-border {
|
|
border: none !important;
|
|
}
|
|
|
|
button {
|
|
outline: none;
|
|
&:after {
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
image{will-change: transform} |