Skip to content

Commit

Permalink
Fix checksum alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
neuodev committed Jan 10, 2022
1 parent 2195837 commit 52bb01e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export default class WalletRestoreVerifyDialog extends Component<Props> {
title: string,
plate: WalletChecksum,
): Node {
console.log({title})
return (
<div key={title}>
<h2 className={styles.addressLabel}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
.addressLabel {
font-weight: 400;
margin-bottom: 10px;
overflow-wrap: break-word;
text-align: left;
}

.postCopyMargin {
Expand Down Expand Up @@ -53,6 +55,6 @@

:global(.YoroiModern) .dialog {
// Refer: https://github.com/Emurgo/yoroi-frontend/pull/1052
min-width: 680px;
max-width: 680px;
min-width: 740px;
max-width: 740px;
}

0 comments on commit 52bb01e

Please sign in to comment.