_changelog.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .changelog {
  2. display: flex;
  3. flex-direction: column;
  4. position: relative;
  5. }
  6. .changelog-item {
  7. position: relative;
  8. display: flex;
  9. align-items: flex-start;
  10. }
  11. .changelog-circle {
  12. align-items: center;
  13. background-color: $color-white;
  14. border: 1px solid $color-border;
  15. border-radius: 50%;
  16. display: flex;
  17. height: $gap-2;
  18. width: $gap-2;
  19. justify-content: center;
  20. margin-left: 2rem;
  21. margin-right: 4rem;
  22. z-index: 1;
  23. .icon {
  24. width: 1.25rem;
  25. height: 1.25rem;
  26. }
  27. }
  28. .changelog-divider {
  29. position: absolute;
  30. border-right: 1px solid $color-border-light;
  31. height: calc(100% + 2rem);
  32. top: 0;
  33. transform: translateX(-79px);
  34. .changelog-item:last-child & {
  35. height: 100%;
  36. }
  37. }
  38. .changelog-left {
  39. display: flex;
  40. justify-content: flex-end;
  41. align-items: center;
  42. min-width: 280px;
  43. padding-bottom: $gap-4;
  44. }
  45. .changelog-right {
  46. padding-bottom: $gap-6;
  47. margin-bottom: $gap-6;
  48. border-bottom: 1px solid $color-border-light;
  49. width: 100%;
  50. .changelog-item:last-child & {
  51. margin: 0;
  52. padding: 0;
  53. border: 0;
  54. }
  55. }