aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/gas-customization/gas-modal-page-container/index.scss
blob: debd9b5ee78e5064ddcb0c745dc238b5d2bc9fc7 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
@import './advanced-tab-content/index';
@import './basic-tab-content/index';

.gas-modal-page-container {
  .page-container {
    max-width: 391px;
    min-height: 585px;

    &__header {
      padding: 0px;
      padding-top: 16px;

      &--no-padding-bottom {
        padding-bottom: 0;
      }
    }

    &__header-close-text {
      font-size: 14px;
      color: #4EADE7;
      position: absolute;
      top: 16px;
      right: 16px;
      cursor: pointer;
      overflow: hidden;
    }

    &__title {
      color: $black;
      font-size: 16px;
      font-weight: 500;
      line-height: 16px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    &__subtitle {
      display: none;
    }

    &__tabs {
      margin-top: 0px;
    }

    &__tab {
      width: 100%;
      font-size: 14px;

      &:last-of-type {
        margin-right: 0;
      }

      &--selected {
        color: $curious-blue;
        border-bottom: 2px solid $curious-blue;
      }
    }
  }
}

.gas-modal-content {
  &__basic-tab {
    height: 219px;
  }


  &__info-row, &__info-row--fade {
    width: 100%;
    background: $polar;
    padding: 15px 21px;
    display: flex;
    flex-flow: column;
    color: $scorpion;
    font-size: 12px;

    &__send-info, &__transaction-info, &__total-info, &__fiat-total-info {
      display: flex;
      flex-flow: row;
      justify-content: space-between;
    }

    &__fiat-total-info {
      justify-content: flex-end;
    }

    &__total-info {
      &__label {
        font-size: 16px;
      }

      &__value {
        font-size: 16px;
        font-weight: bold;
      }
    }

    &__transaction-info, &__send-info {
      &__label {
        font-size: 12px;
      }

      &__value {
        font-size: 14px;
      }
    }
  }

  &__info-row--fade {
    background: white;
    color: $dusty-gray;
    border-top: 1px solid $mischka;
  }
}