mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
3d36fbd8ce
* add Set Advanced Privacy Settings onboarding view
51 lines
802 B
SCSS
51 lines
802 B
SCSS
.privacy-settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
&__header {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
max-width: 500px;
|
|
margin: 24px;
|
|
}
|
|
|
|
&__settings {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
max-width: 620px;
|
|
margin-bottom: 20px;
|
|
|
|
a {
|
|
color: $Blue-500;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
color: $Blue-300;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__setting {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
text-align: left;
|
|
max-width: 430px;
|
|
|
|
&__toggle {
|
|
margin-left: 42px;
|
|
}
|
|
}
|
|
|
|
& button {
|
|
max-width: 50%;
|
|
padding: 15px;
|
|
}
|
|
}
|