aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-list/index.scss
blob: 0e8db485cf444cf37932d9e7a7edef628311803d (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
.transaction-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: hidden;

  &__completed-transactions {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  &__header {
    flex: 0 0 auto;
    font-size: .875rem;
    color: $dusty-gray;
    border-bottom: 1px solid $geyser;
    padding: 16px 0 8px 20px;

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

  &__transactions {
    flex: 1;
    overflow-y: auto;
  }

  &__pending-transactions {
    margin-bottom: 16px;
  }

  &__empty {
    flex: 1;
    display: grid;
    grid-template-rows: 35% 1fr;
  }

  &__empty-text {
    grid-row-start: 2;
    display: flex;
    justify-content: center;
    color: $silver;
  }
}