/ common / components / TXMetaDataPanel / components / AdvancedGas.scss
AdvancedGas.scss
 1  @import 'common/sass/variables';
 2  
 3  .AdvancedGas {
 4    margin-top: 0;
 5    margin-bottom: 0;
 6  
 7    &-calculate-limit {
 8      font-size: $font-size-small;
 9  
10      .checkbox {
11        display: flex;
12        align-items: center;
13        width: fit-content;
14        input[type='checkbox'] {
15          position: initial;
16          margin: 0;
17          margin-right: 8px;
18        }
19        span {
20          font-weight: 400;
21        }
22      }
23    }
24  
25    &-flex-wrapper {
26      margin: 0px -8px;
27    }
28    &-gas-price,
29    &-gas-limit,
30    &-nonce {
31      width: initial;
32      flex-grow: 1;
33      margin: 0px 8px;
34    }
35    @media screen and (max-width: $screen-lg) {
36      &-flex-wrapper {
37        flex-wrap: wrap;
38      }
39  
40      &-nonce {
41        width: 100%;
42      }
43    }
44  }