Files
jxc4_app_and_mini/src/assets/global.scss
2025-11-28 10:19:58 +08:00

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}