index.less 967 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @import '../style/var';
  2. .van-contact-list {
  3. box-sizing: border-box;
  4. height: 100%;
  5. padding-bottom: 80px;
  6. &__item {
  7. padding: @contact-list-item-padding;
  8. }
  9. &__item-value {
  10. display: flex;
  11. align-items: center;
  12. padding-right: @padding-xl;
  13. padding-left: @padding-xs;
  14. }
  15. &__item-tag {
  16. flex: none;
  17. margin-left: @padding-xs;
  18. padding-top: 0;
  19. padding-bottom: 0;
  20. line-height: 1.4em;
  21. }
  22. &__group {
  23. box-sizing: border-box;
  24. height: 100%;
  25. overflow-y: scroll;
  26. -webkit-overflow-scrolling: touch;
  27. }
  28. &__edit {
  29. font-size: @contact-list-edit-icon-size;
  30. }
  31. &__bottom {
  32. position: fixed;
  33. right: 0;
  34. bottom: 0;
  35. left: 0;
  36. z-index: @contact-list-add-button-z-index;
  37. padding: 0 @padding-md;
  38. padding-bottom: constant(safe-area-inset-bottom);
  39. padding-bottom: env(safe-area-inset-bottom);
  40. background-color: @white;
  41. }
  42. &__add {
  43. height: 40px;
  44. margin: 5px 0;
  45. }
  46. }