/ common / components / TransactionStatus / TransactionDataTable.scss
TransactionDataTable.scss
 1  @import 'common/sass/variables';
 2  @import 'common/sass/mixins';
 3  
 4  .TxData {
 5    &-row {
 6      font-size: 0.9rem;
 7  
 8      &-label {
 9        font-weight: bold;
10        text-align: right;
11      }
12  
13      &-data {
14        @include mono;
15  
16        &-more {
17          margin-left: $space-sm;
18          font-size: 0.7rem;
19          opacity: 0.7;
20        }
21  
22        &-status {
23          font-weight: bold;
24  
25          &.is-success {
26            color: color(brand-success);
27          }
28          &.is-warning {
29            color: color(brand-warning);
30          }
31          &.is-danger {
32            color: color(brand-danger);
33          }
34        }
35  
36        .Identicon {
37          float: left;
38          margin-right: $space-sm;
39        }
40  
41        textarea {
42          display: block;
43          width: 100%;
44          height: 7.2rem;
45          background: color(gray-lighter);
46        }
47      }
48    }
49  }