Ionic + React accounts android app and PWA
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

accounts.module.scss 3.1 KiB

il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
il y a 4 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. .pageHeader {
  2. position: relative;
  3. padding: 25px 0;
  4. background-color: var(--black-medium);
  5. h4 {
  6. font-size: var(--page-header-size);
  7. text-align: center;
  8. color: white;
  9. }
  10. button {
  11. width: 40px;
  12. height: 40px;
  13. position: absolute;
  14. right: 15px;
  15. top: 15px;
  16. svg {
  17. width: 100%;
  18. height: 100%;
  19. fill: white;
  20. }
  21. }
  22. }
  23. .upfold {
  24. background-color: var(--black);
  25. border-bottom-left-radius: 30px;
  26. }
  27. .segments {
  28. text-align: center;
  29. padding: 5px 15px;
  30. background-color: var(--black-medium);
  31. // Writing this to avoid lines that show up in certain phone
  32. margin: -5px 0;
  33. button {
  34. padding: 5px 12px;
  35. border: 1px solid var(--dark-grey);
  36. border-radius: 20px;
  37. font-size: 12px;
  38. color: var(--light-grey);
  39. margin: 0 10px;
  40. font-weight: 500;
  41. &.active {
  42. background-color: white;
  43. color: var(--dark-grey);
  44. }
  45. }
  46. }
  47. .statisticalDetails {
  48. background-color: var(--black-medium);
  49. display: flex;
  50. align-items: stretch;
  51. justify-content: space-between;
  52. padding: 25px 40px;
  53. margin: 0 auto;
  54. border-bottom-left-radius: 30px;
  55. li {
  56. padding: 10px 15px;
  57. border-radius: 20px;
  58. color: white;
  59. width: calc(50% - 10px);
  60. &:nth-child(1) {
  61. background-color: var(--red);
  62. }
  63. &:nth-child(2) {
  64. background-color: var(--teal);
  65. }
  66. label {
  67. font-size: 12px;
  68. span {
  69. vertical-align: middle;
  70. letter-spacing: 0.5px;
  71. }
  72. svg {
  73. vertical-align: middle;
  74. width: 15px;
  75. height: 15px;
  76. fill: white;
  77. margin-right: 5px;
  78. }
  79. }
  80. h3 {
  81. font-weight: 500;
  82. font-size: 18px;
  83. margin-top: 10px;
  84. }
  85. }
  86. }
  87. .actions {
  88. white-space: nowrap;
  89. overflow-x: auto;
  90. padding: 15px 20px;
  91. li {
  92. display: inline-block;
  93. vertical-align: middle;
  94. margin: 0 10px;
  95. button {
  96. width: 40px;
  97. height: 40px;
  98. border: 1px solid var(--dark-grey);
  99. border-radius: 10px;
  100. display: block;
  101. margin: 0 auto 10px;
  102. }
  103. label {
  104. color: var(--light-grey);
  105. font-weight: 500;
  106. display: block;
  107. font-size: 12px;
  108. }
  109. }
  110. }
  111. .allTransactionsContainer {
  112. position: relative;
  113. background-color: var(--black);
  114. }
  115. .allTransactions {
  116. background-color: white;
  117. border-top-right-radius: 30px;
  118. padding: 20px 0;
  119. }
  120. .transactionCard {
  121. padding: 0 20px;
  122. header {
  123. display: flex;
  124. align-items: center;
  125. justify-content: space-between;
  126. h5 {
  127. font-size: 12px;
  128. font-weight: 500;
  129. color: var(--grey);
  130. }
  131. a {
  132. color: var(--teal);
  133. font-size: 12px;
  134. }
  135. }
  136. }