aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list-item-details/index.scss
blob: 54cf834cc0acae19e6ff937d9fe0bb4947d0300e (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
.transaction-list-item-details {
  &__header {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  &__header-buttons {
    display: flex;
    flex-direction: row;
  }

  &__header-button {
    font-size: .625rem;

    &:not(:last-child) {
      margin-right: 8px;
    }
  }

  &__sender-to-recipient-container {
    margin-bottom: 8px;
  }

  &__cards-container {
    display: flex;
    flex-direction: row;

    @media screen and (max-width: $break-small) {
      flex-direction: column;
    }
  }

  &__transaction-breakdown {
    flex: 1;
    margin-right: 8px;
    min-width: 0;

    @media screen and (max-width: $break-small) {
      margin: 0 0 8px 0;
    }
  }

  &__transaction-activity-log {
    flex: 2;
    min-width: 0;
  }
}