2019-01-23 16:25:34 +01:00
|
|
|
.reveal-seed-phrase {
|
2019-08-02 05:57:26 +02:00
|
|
|
@media screen and (max-width: 576px) {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 96%;
|
|
|
|
margin-left: 2%;
|
|
|
|
margin-right: 2%;
|
|
|
|
}
|
|
|
|
|
2019-01-23 16:25:34 +01:00
|
|
|
&__secret {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2020-07-15 15:13:40 +02:00
|
|
|
border: 1px solid #cdcdcd;
|
2019-01-23 16:25:34 +01:00
|
|
|
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%;
|
2020-07-15 15:13:40 +02:00
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
2019-01-23 16:25:34 +01:00
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 8px 0 18px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__reveal-button {
|
|
|
|
color: $white;
|
2020-07-15 15:13:40 +02:00
|
|
|
font-size: 0.75rem;
|
2019-01-23 16:25:34 +01:00
|
|
|
font-weight: 500;
|
|
|
|
text-transform: uppercase;
|
|
|
|
margin-top: 8px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__export-text {
|
|
|
|
color: $curious-blue;
|
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2019-02-27 15:46:41 +01:00
|
|
|
|
|
|
|
button {
|
2020-07-15 15:13:40 +02:00
|
|
|
margin-top: 0;
|
2019-02-27 15:46:41 +01:00
|
|
|
}
|
2019-08-02 05:57:26 +02:00
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.first-time-flow__button:last-of-type {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
}
|
2019-01-23 16:25:34 +01:00
|
|
|
}
|