aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-activity-log/index.scss
blob: fb24b77e2045bf17c3b0310b023181347647e54f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
.transaction-activity-log {
  &__card {
    background: $white;
  }

  &__activities-container {
    padding-top: 8px;
  }

  &__activity {
    padding: 4px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;

    &::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 6px;
      border-right: 1px solid $scorpion;
    }

    &:first-child::after {
      height: 50%;
      top: 50%;
    }

    &:last-child::after {
      height: 50%;
    }
  }

  &__activity-icon {
    width: 13px;
    height: 13px;
    margin-right: 6px;
    border-radius: 50%;
    background: $scorpion;
  }

  &__activity-text {
    color: $scorpion;
    font-size: .75rem;
  }

  b {
    font-weight: 500;
  }
}