TokenRow.scss
 1  @import "common/sass/variables";
 2  @import "common/sass/mixins";
 3  
 4  .TokenRow {
 5    border-bottom: 1px solid shade-dark(0.1);
 6  
 7    &-balance,
 8    &-symbol {
 9      padding: $space-xs 0 $space-xs $space-md;
10    }
11  
12    &-balance {
13      @include mono;
14    }
15  
16    &-symbol {
17      position: relative;
18      font-weight: 300;
19  
20      &-remove {
21        position: absolute;
22        top: 50%;
23        right: 4px;
24        float: right;
25        font-size: 18px;
26        cursor: pointer;
27        opacity: 0.4;
28        transform: translateY(-50%);
29  
30        &:hover {
31          opacity: 1;
32        }
33      }
34    }
35  }