1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-02 06:07:06 +01:00
metamask-extension/ui/pages/onboarding-flow/import-srp/index.scss

67 lines
1.1 KiB
SCSS
Raw Normal View History

.import-srp {
width: 840px;
@media screen and (max-width: 349px) {
width: 300px;
}
@media screen and (min-width: 350px) and (max-width: 460px) {
width: 357px;
}
@media screen and (min-width: 461px) and (max-width: $break-small) {
width: 450px;
}
@media screen and (min-width: $break-small) and (max-width: 840px) {
width: 580px;
}
&__header {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
margin: 20px auto;
max-width: 500px;
}
&__description {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
margin-bottom: 40px;
a {
2022-03-19 01:43:33 +01:00
color: var(--color-primary-default);
&:hover {
cursor: pointer;
2022-03-19 01:43:33 +01:00
color: var(--color-primary-default);
}
}
}
&__actions {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: left;
margin: auto;
&--link {
@include H6;
margin-bottom: 12px;
}
}
&__confirm-button {
width: 327px;
margin: auto;
margin-top: 59px;
}
}