29 lines
527 B
SCSS
29 lines
527 B
SCSS
@import './tools';
|
|
@import './ui';
|
|
|
|
@font-face {
|
|
font-family: OPPOSANS;
|
|
src: url('~@/peach/scss/font/OPPOSANS-M-subfont.ttf');
|
|
}
|
|
|
|
.font-OPPOSANS {
|
|
font-family: OPPOSANS;
|
|
}
|
|
|
|
page {
|
|
-webkit-overflow-scrolling: touch; // 解决 ios 滑动不流畅
|
|
height: 100%;
|
|
width: 100%;
|
|
word-break: break-all;
|
|
white-space: normal;
|
|
background-color: $bg-page;
|
|
color: $dark-3;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
color: transparent;
|
|
display: none;
|
|
}
|