17 lines
738 B
SCSS
17 lines
738 B
SCSS
@import './styles/common.scss';
|
|
@import './styles/iconfont.scss';
|
|
|
|
/**
|
|
由于Cover-view标签并不支持iconfont 所以需要把 .ttf 转成 base64 之后得到的 stylesheet.css 文件覆盖掉 iconfont.css 里的 @font-face 即可
|
|
[转换工具](https://transfonter.org/)
|
|
[教程](https://blog.csdn.net/VoidLuffy/article/details/123530341)
|
|
[相关说明](https://developers.weixin.qq.com/community/develop/doc/000a60f7d58a982f08d7ddfc456000)
|
|
*/
|
|
|
|
// 总高度 - 自定义tabbar高度 - apple小黑条高度
|
|
page {
|
|
height: calc(100% - #{$customTabBarHeight} - constant(safe-area-inset-bottom));
|
|
height: calc(100% - #{$customTabBarHeight} - env(safe-area-inset-bottom));
|
|
background-color: #f7f7f7;
|
|
}
|