1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/pages/first-time-flow/seed-phrase/reveal-seed-phrase/index.scss
Dan J Miller 3eff478775
I5849 incremental account security (#6874)
* Implements ability to defer seed phrase backup to later

* Adds incremental-security.spec.js, including test dapp that sends signed tx with stand alone localhost provider

* Update metamask-responsive-ui for incremental account security changes

* Update backup-notification style and fix responsiveness of seed phrase screen

* Remove uneeded files from send-eth-with-private-key-test/

* Apply linguist flags in .gitattributes for send-eth-with-private-key-test/ethereumjs-tx.js

* Improve docs in controllers/onboarding.js

* Clean up metamask-extension/test/e2e/send-eth-with-private-key-test/index.html

* Remove unnecessary newlines in a couple first-time-flow/ files

* Fix import of backup-notification in home.component

* Fix git attrs file
2019-08-02 01:27:26 -02:30

74 lines
1.2 KiB
SCSS

.reveal-seed-phrase {
@media screen and (max-width: 576px) {
display: flex;
flex-direction: column;
width: 96%;
margin-left: 2%;
margin-right: 2%;
}
&__secret {
position: relative;
display: flex;
justify-content: center;
border: 1px solid #CDCDCD;
border-radius: 6px;
background-color: $white;
padding: 18px;
margin-top: 36px;
max-width: 350px;
}
&__secret-words {
width: 310px;
font-size: 1.25rem;
text-align: center;
&--hidden {
filter: blur(5px);
}
}
&__secret-blocker {
position: absolute;
top: 0;
bottom: 0;
height: 100%;
width: 100%;
background-color: rgba(0,0,0,0.6);
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
padding: 8px 0 18px;
cursor: pointer;
}
&__reveal-button {
color: $white;
font-size: .75rem;
font-weight: 500;
text-transform: uppercase;
margin-top: 8px;
text-align: center;
}
&__export-text {
color: $curious-blue;
cursor: pointer;
font-weight: 500;
}
button {
margin-top: 0xp;
}
&__buttons {
display: flex;
.first-time-flow__button:last-of-type {
margin-left: 20px;
}
}
}