app.wxss 264 B

1234567891011121314
  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. }
  9. /*文本省略*/
  10. .m-ellipsis {
  11. overflow: hidden;
  12. white-space: nowrap;
  13. text-overflow: ellipsis;
  14. }