mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 19:44:21 +00:00
d279733fd7
* add onlyTransactionParameters prop to SendButtonFactory to only show Transaction Parameters and not the serialized TX. Useful in Broadcast Signed Transaction so that the user is not presented with redundant data. * add and pass onlyTransactionParameters props through SendButton from BroadcastTx * Adjusted spacing of broadcast tx * Move the qr code styles into css.
18 lines
238 B
SCSS
18 lines
238 B
SCSS
@import "common/sass/variables";
|
|
|
|
.BroadcastTx {
|
|
max-width: 520px;
|
|
margin: 0 auto;
|
|
|
|
&-help {
|
|
margin-bottom: $space * 1.5;
|
|
}
|
|
|
|
&-qr {
|
|
max-width: 15rem;
|
|
margin: 1rem auto;
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
}
|