mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
ad28c81a39
Co-authored-by: Guillaume Roux <guillaumeroux123@gmail.com> Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: David Walsh <davidwalsh83@gmail.com>
61 lines
1.1 KiB
SCSS
61 lines
1.1 KiB
SCSS
.new-account-modal {
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
background-color: var(--color-background-default);
|
|
border-radius: 10px;
|
|
box-shadow: 0 5px 16px rgba($black, 0.25);
|
|
|
|
&__content {
|
|
@extend %col-nowrap;
|
|
|
|
padding: 1.5rem;
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
&__header {
|
|
@include H4;
|
|
|
|
font-weight: bold;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
&__header-close {
|
|
@include H4;
|
|
|
|
color: #24292e;
|
|
background: none;
|
|
}
|
|
}
|
|
|
|
&__input-label {
|
|
color: var(--color-text-alternative);
|
|
margin-top: 1.25rem;
|
|
}
|
|
|
|
&__input {
|
|
@include H4;
|
|
|
|
background: var(--color-background-default);
|
|
border: 1px solid var(--color-border-muted);
|
|
box-sizing: border-box;
|
|
border-radius: 8px;
|
|
padding: 0.625rem 0.75rem;
|
|
margin-top: 0.75rem;
|
|
|
|
&::placeholder {
|
|
color: var(--color-text-muted);
|
|
}
|
|
}
|
|
|
|
&__footer {
|
|
@extend %row-nowrap;
|
|
|
|
padding: 1rem;
|
|
|
|
button + button {
|
|
margin-left: 1rem;
|
|
}
|
|
}
|
|
}
|