mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-10 02:55:41 +00:00
be61d804e0
* 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.
36 lines
428 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|