-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update design for metametrics opt-in screen
- Loading branch information
Showing
3 changed files
with
207 additions
and
71 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
111 changes: 111 additions & 0 deletions
111
ui/app/components/pages/first-time-flow/metametrics-opt-in/index.scss
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,111 @@ | ||
.metametrics-opt-in { | ||
position: relative; | ||
width: 100%; | ||
|
||
&__main { | ||
display: flex; | ||
flex-direction: column; | ||
margin-left: 26.26%; | ||
margin-right: 28%; | ||
color: black; | ||
|
||
@media screen and (max-width: 575px) { | ||
justify-content: center; | ||
margin-left: 2%; | ||
margin-right: 2%; | ||
} | ||
|
||
.app-header__logo-container { | ||
margin-top: 3%; | ||
} | ||
} | ||
|
||
&__title { | ||
position: relative; | ||
margin-top: 20px; | ||
|
||
font-family: Roboto; | ||
font-style: normal; | ||
font-weight: normal; | ||
line-height: normal; | ||
font-size: 42px; | ||
} | ||
|
||
&__body-graphic { | ||
margin-top: 25px; | ||
|
||
.fa-bar-chart { | ||
color: #C4C4C4; | ||
} | ||
} | ||
|
||
&__description { | ||
font-family: Roboto; | ||
font-style: normal; | ||
font-weight: normal; | ||
line-height: 21px; | ||
font-size: 16px; | ||
margin-top: 12px; | ||
} | ||
|
||
&__committments { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
&__row { | ||
display: flex; | ||
margin-top: 8px; | ||
|
||
.fa-check { | ||
margin-right: 12px; | ||
color: #1ACC56; | ||
} | ||
|
||
.fa-times { | ||
margin-right: 12px; | ||
color: #D0021B; | ||
} | ||
} | ||
|
||
&__bold { | ||
font-weight: bold; | ||
} | ||
|
||
&__break-row { | ||
margin-top: 30px; | ||
} | ||
|
||
&__body { | ||
position: relative; | ||
display: flex; | ||
max-width: 730px; | ||
flex-direction: column; | ||
} | ||
|
||
&__body-text { | ||
max-width: 548px; | ||
margin-left: 16px; | ||
margin-right: 16px; | ||
} | ||
|
||
&__footer { | ||
margin-top: 26px; | ||
|
||
.page-container__footer { | ||
border-top: none; | ||
max-width: 535px; | ||
margin-bottom: 15px; | ||
|
||
button { | ||
height: 44px; | ||
min-height: 44px; | ||
margin-right: 16px; | ||
} | ||
|
||
header { | ||
padding: 0px; | ||
} | ||
} | ||
} | ||
} |
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