app.wxss 368 B

1234567891011121314151617181920
  1. /**app.wxss**/
  2. .singleline {
  3. overflow: hidden;
  4. text-overflow: ellipsis;
  5. white-space: nowrap;
  6. }
  7. .twoline {
  8. overflow: hidden;
  9. text-overflow: ellipsis;
  10. display: -webkit-box;
  11. -webkit-box-orient: vertical;
  12. -webkit-line-clamp: 2;
  13. }
  14. @supports (bottom: env(safe-area-inset-bottom)) {
  15. page {
  16. --safe-area-inset-bottom: env(safe-area-inset-bottom);
  17. }
  18. }