- 统一代码风格,修复缺少分号问题-优化试衣结果图片加载逻辑,添加默认loading图 - 修复上传衣物页面容器样式问题 - 调整模特切换逻辑,增加可见性控制- 更新README文档,添加试衣间相关链接 -优化上传衣物选择器样式与交互细节
28 lines
539 B
SCSS
28 lines
539 B
SCSS
@import './tools';
|
|
@import './ui';
|
|
|
|
/* 字体文件 */
|
|
@font-face {
|
|
font-family: OPPOSANS;
|
|
src: url('~@/sheep/scss/font/OPPOSANS-M-subfont.ttf');
|
|
}
|
|
.font-OPPOSANS {
|
|
font-family: OPPOSANS;
|
|
}
|
|
page {
|
|
-webkit-overflow-scrolling: touch; // 解决ios滑动不流畅
|
|
height: 100%;
|
|
width: 100%;
|
|
// font-family: OPPOSANS;
|
|
word-break: break-all; //英文文本不换行
|
|
white-space: normal;
|
|
//background-color: $bg-page;
|
|
color: $dark-3;
|
|
}
|
|
::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
color: transparent;
|
|
display: none;
|
|
}
|