| 12345678910111213141516171819202122 |
- /**app.wxss**/
- @import '/style/template.wxss';
- page {
- background: #f5f5f5;
- font-family: PingFangSC-Regular, PingFang SC;
- }
- .global-family {
- font-family: PingFangSC-Medium, PingFang SC;
- }
- .container {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- }
- .safe-area {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
|