MyCrypto/common/components/TransactionStatus/TransactionStatus.scss
William O'Beirne be61d804e0 Check Transaction page (Pt. 1 - The Basics) (#1099)
* Component layer and routing for transaction status.

* Initial start on redux for transactions.

* Initial crack at reducer / actions / saga for transactions.

* Finish off check transaction saga, reducer, component, and page.
2018-02-16 10:57:23 -06:00

36 lines
428 B
SCSS

@import 'common/sass/variables';
.TxStatus {
text-align: center;
&-title {
margin-top: 0;
}
&-data {
text-align: left;
}
&-loading {
padding: $space * 3 0;
}
&-error {
max-width: 620px;
margin: 0 auto;
&-title {
color: $brand-danger;
}
&-desc {
font-size: $font-size-bump;
margin-bottom: $space-md;
}
&-list {
text-align: left;
}
}
}