call-log.component.scss 701 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .log-item {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. padding: 1.5385vw 2.5641vw;
  6. border-bottom: 0.2564vw solid #f3f3f3;
  7. font-size: 3.5897vw;
  8. .item-col {
  9. .title{
  10. margin-bottom: 1.0256vw;
  11. }
  12. }
  13. .item-col-right {
  14. display: flex;
  15. align-items: center;
  16. .row {
  17. margin-right: 1.5385vw;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: flex-end;
  21. }
  22. }
  23. .desc,
  24. ion-icon {
  25. color: #8b8b8b;
  26. }
  27. .desc {
  28. display: flex;
  29. align-items: center;
  30. .tag {
  31. width: 1.5385vw;
  32. height: 1.5385vw;
  33. background-color: #42d96b;
  34. border-radius: 50%;
  35. margin-right: 1.5385vw;
  36. }
  37. }
  38. }