This commit is contained in:
wtq
2025-11-28 10:19:58 +08:00
commit 3e6f452aa5
275 changed files with 47800 additions and 0 deletions

48
src/assets/global.scss Normal file
View File

@@ -0,0 +1,48 @@
/*
公共样式
*/
// 引入颜色配置
@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}