aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/confirm-page-container/confirm-page-container-content/index.scss
blob: 39797a43f1417fbfa6008853aa836efe15a3824e (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
54
55
56
57
58
59
60
61
62
63
64
65
66
@import './confirm-page-container-error/index';

@import './confirm-page-container-warning/index';

@import './confirm-page-container-summary/index';

.confirm-page-container-content {
  overflow-y: auto;
  flex: 1;

  &__error-container {
    padding: 0 16px 16px 16px;
  }

  &__details {
    box-sizing: border-box;
    padding: 0 24px;
  }

  &__data {
   padding: 16px;
   color: $oslo-gray;
  }

  &__data-box {
    background-color: #f9fafa;
    padding: 12px;
    font-size: .75rem;
    margin-bottom: 16px;
    word-wrap: break-word;
    max-height: 200px;
    overflow-y: auto;

    &-label {
      text-transform: uppercase;
      padding: 8px 0 12px;
      font-size: 12px;
    }
  }

  &__data-field {
    display: flex;
    flex-direction: row;

    &-label {
      font-weight: 500;
      padding-right: 16px;
    }

    &:not(:last-child) {
      margin-bottom: 5px;
    }
  }

  &__gas-fee {
    border-bottom: 1px solid $geyser;
  }

  &__function-type {
    font-size: .875rem;
    font-weight: 500;
    text-transform: capitalize;
    color: $black;
    padding-left: 5px;
  }
}