/ common / components / WalletDecrypt / components / LedgerNano.scss
LedgerNano.scss
 1  @import 'common/sass/variables';
 2  
 3  .LedgerDecrypt {
 4    text-align: center;
 5  
 6    &-tip {
 7      font-size: $font-size-xs-bump;
 8      opacity: 0.7;
 9      margin-bottom: $space;
10    }
11  
12    &-help {
13      margin-top: 10px;
14      font-size: 13px;
15    }
16  
17    &-error {
18      opacity: 0;
19      transition: none;
20  
21      &.is-showing {
22        opacity: 1;
23      }
24    }
25  
26    &-buy {
27      margin: 10px 0;
28    }
29  
30    &-message {
31      display: flex;
32      justify-content: center;
33      align-items: center;
34  
35      .Spinner {
36        margin-right: 16px;
37      }
38    }
39  }