app.wxss 394 B

12345678910111213141516171819202122
  1. /**app.wxss**/
  2. @import '/style/template.wxss';
  3. page {
  4. background: #f5f5f5;
  5. font-family: PingFangSC-Regular, PingFang SC;
  6. }
  7. .global-family {
  8. font-family: PingFangSC-Medium, PingFang SC;
  9. }
  10. .container {
  11. display: flex;
  12. flex-direction: column;
  13. box-sizing: border-box;
  14. }
  15. .safe-area {
  16. padding-bottom: constant(safe-area-inset-bottom);
  17. padding-bottom: env(safe-area-inset-bottom);
  18. }