Project: Mall App Client: Maiora
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

108 行
1.6 KiB

  1. .heading-holder {
  2. background-color: #efefef;
  3. display: flex;
  4. align-items: center;
  5. justify-content: space-between;
  6. padding: 10px 5%;
  7. .name {
  8. color: var(--brand-dark-grey);
  9. font-size: 12px;
  10. font-weight: 500;
  11. letter-spacing: 0.5px;
  12. }
  13. ion-button {
  14. margin: 0;
  15. --color: var(--brand-blue);
  16. font-size: 12px;
  17. --padding-end: 0;
  18. }
  19. }
  20. ul.orders {
  21. padding: 0;
  22. margin: 0;
  23. .order {
  24. list-style: none;
  25. padding: 20px 5%;
  26. color: var(--brand-dark-grey);
  27. line-height: 1.6;
  28. border-bottom: 1px solid #efefef;
  29. .heading {
  30. width: 50%;
  31. font-size: 15px;
  32. width: 50%;
  33. text-overflow: ellipsis;
  34. overflow: hidden;
  35. white-space: nowrap;
  36. font-weight: 600;
  37. }
  38. .time-details {
  39. font-size: 13px;
  40. color: var(--brand-grey);
  41. }
  42. }
  43. .ordered-items {
  44. list-style: none;
  45. padding: 0;
  46. margin: 10px 0 0;
  47. li {
  48. display: flex;
  49. width: 100%;
  50. justify-content: space-between;
  51. margin: 0px auto;
  52. align-items: center;
  53. color: var(--brand-grey);
  54. .name {
  55. font-size: 13px;
  56. letter-spacing: 0.5px;
  57. }
  58. .time {
  59. font-size: 12px;
  60. }
  61. }
  62. }
  63. .note {
  64. color: var(--brand-grey);
  65. font-size: 13px;
  66. padding: 10px 0;
  67. margin-top: 10px;
  68. border-top: 1px solid #efefef;
  69. }
  70. .action-buttons-holder {
  71. display: flex;
  72. align-items: center;
  73. width: 100%;
  74. ion-button {
  75. --padding-top: 0px;
  76. --padding-bottom: 0px;
  77. height: 30px;
  78. margin-right: 10px;
  79. font-size: 12px;
  80. font-weight: 400;
  81. letter-spacing: 0.5px;
  82. &:first-child {
  83. --background: var(--brand-blue);
  84. }
  85. &:last-child {
  86. --color: var(--brand-blue);
  87. --border-color: var(--brand-blue);
  88. }
  89. }
  90. }
  91. }