1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-25 11:28:51 +01:00
metamask-extension/ui/pages/first-time-flow/welcome/index.scss

52 lines
801 B
SCSS
Raw Normal View History

.welcome-page {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
max-width: 442px;
padding: 0 18px;
color: black;
&__wrapper {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
height: 100%;
margin-top: 110px;
}
&__header {
2020-10-29 17:31:48 +01:00
@include H3;
margin-bottom: 22px;
margin-top: 50px;
text-align: center;
}
&__description {
text-align: center;
2021-09-08 22:08:23 +02:00
p {
2020-10-29 17:31:48 +01:00
@include Paragraph;
2021-09-08 22:08:23 +02:00
text-align: start;
margin-bottom: 22px;
}
a {
color: $primary-1;
}
@media screen and (max-width: $break-small) {
font-size: 0.9rem;
}
}
.first-time-flow__button {
width: 184px;
font-weight: 500;
margin-top: 44px;
}
}