common.scss 333 B

123456789101112131415161718192021
  1. view,image,text,rich-text,progress,button,input,form,label,textarea{
  2. box-sizing: border-box;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. page,
  7. uni-page-body{
  8. height: 100%;
  9. background: $main-bg-color;
  10. }
  11. .hidden{
  12. display: flex;
  13. visibility: hidden;
  14. }
  15. .ellipsis-hide {
  16. overflow: hidden;
  17. text-overflow:ellipsis;
  18. white-space: nowrap;
  19. }