index.css 898 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .address-card {
  2. background-color: white;
  3. padding: 10px;
  4. font-size: 16px;
  5. color: black;
  6. display: flex;
  7. border: 1px solid #F3F3F3;
  8. justify-content: space-between;
  9. align-items: center;
  10. }
  11. .address-add {
  12. position: fixed;
  13. bottom: 0;
  14. width: 100%;
  15. text-align: center;
  16. font-size: 18px;
  17. border-top: 1px solid #F3F3F3;
  18. height: 50px;
  19. line-height: 50px;
  20. box-shadow: 3px -1px 1px #ebedf0;
  21. background-color: #f44;
  22. color: white;
  23. }
  24. .address-info{
  25. width: 85%;
  26. }
  27. .address-edit {
  28. width: 15%;
  29. text-align: center;
  30. }
  31. .address-username {
  32. font-weight: 500;
  33. }
  34. .ellipsis {
  35. overflow: hidden;
  36. text-overflow: ellipsis;
  37. white-space: nowrap
  38. }
  39. .address-address {
  40. font-size: 14px;
  41. }
  42. .address-label {
  43. font-size: 12px;
  44. padding: 0 10px;
  45. background-color: #ff6d6d;
  46. color: white;
  47. border-radius: 10px;
  48. }