-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wallet: Implement recovery phrase page
- Loading branch information
1 parent
02e5f96
commit c1dce9f
Showing
4 changed files
with
61 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.container { | ||
max-width: 500px; | ||
} | ||
|
||
.seed { | ||
display: grid; | ||
grid-auto-flow: column; | ||
grid-template-rows: repeat(6, auto); | ||
gap: var(--btcpay-space-m); | ||
justify-content: space-evenly; | ||
padding: 0; | ||
} | ||
|
||
.seed li::marker { | ||
color: var(--btcpay-body-text-muted); | ||
font-weight: var(--btcpay-font-weight-normal); | ||
padding-left: 2em; | ||
} | ||
|
||
.seed li { | ||
font-weight: var(--btcpay-font-weight-semibold); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters