app.wxss 304 B

123456789101112131415
  1. /**app.wxss**/
  2. .container {
  3. height: calc(100vh - 120rpx);
  4. display: flex;
  5. flex-direction: column;
  6. box-sizing: border-box;
  7. background-color: #F7F7F7;
  8. font-family: PingFangSC, PingFang SC;
  9. }
  10. /*文本省略*/
  11. .m-ellipsis {
  12. overflow: hidden;
  13. white-space: nowrap;
  14. text-overflow: ellipsis;
  15. }