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

  &__completed-transactions {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  &__header {
    flex: 0 0 auto;
    font-weight: 600;
    text-align: center;
    color: $black;
    padding: 8px 0;
  }

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

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

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

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