mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
43c278d813
* Privacy - Allow users to set a custom RPC from the onboarding process (#16767) * Privacy - Allow adding custom IPFS from onboarding (#16782) * Privacy - Show default selected network after a custom network has been added during onboarding * WIP: Show dropdown list of networks * Add network switcher to the onboarding advanced privacy screen * Fix duplicate imports * Provide default for networks * Update ui/helpers/utils/ipfs.js Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com> * Fix lint * Remove unwanted changes * Fix lint Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>
73 lines
1.2 KiB
SCSS
73 lines
1.2 KiB
SCSS
.privacy-settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
@include screen-sm-max {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
@include screen-sm-min {
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
&__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;
|
|
|
|
@include screen-sm-min {
|
|
margin-inline-start: 48px;
|
|
margin-inline-end: 48px;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-primary-default);
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
color: var(--color-primary-default);
|
|
}
|
|
}
|
|
}
|
|
|
|
&__setting {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
text-align: left;
|
|
max-width: 430px;
|
|
|
|
&__toggle {
|
|
margin-left: 42px;
|
|
}
|
|
}
|
|
|
|
&__network {
|
|
position: relative;
|
|
|
|
.dropdown-menu-item {
|
|
font-size: 14px !important;
|
|
padding: 8px !important;
|
|
}
|
|
}
|
|
|
|
& button {
|
|
max-width: 50%;
|
|
padding: 15px;
|
|
}
|
|
}
|