mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
92c03bdff2
* Refactoring button styles * renaming buttons * Add Link and Button styles * Update new btn styles and storybook * Fix tests * Change font weight; Update storybook * Fix linter
52 lines
755 B
SCSS
52 lines
755 B
SCSS
.settings-tab {
|
|
&__error {
|
|
padding-bottom: 20px;
|
|
text-align: center;
|
|
color: $crimson;
|
|
}
|
|
|
|
&__advanced-link {
|
|
@extend %small-link;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
&__rpc-save-button {
|
|
align-self: flex-end;
|
|
padding: 5px;
|
|
cursor: pointer;
|
|
width: 25%;
|
|
}
|
|
|
|
&__button--red {
|
|
border-color: lighten($monzo, 10%);
|
|
color: $monzo;
|
|
|
|
&:active {
|
|
background: lighten($monzo, 55%);
|
|
border-color: $monzo;
|
|
}
|
|
|
|
&:hover {
|
|
border-color: $monzo;
|
|
}
|
|
}
|
|
|
|
&__radio-buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
&__radio-button {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
|
|
&__radio-label {
|
|
padding-left: 4px;
|
|
}
|
|
}
|