1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/create-account/index.scss
HowardBraham 694773f17a
Upgrading the Import Account modal (#17763)
Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
Co-authored-by: NidhiKJha <nidhi.kumari@consensys.net>
Co-authored-by: montelaidev <monte.lai@consensys.net>
2023-03-06 09:48:28 -08:00

84 lines
1.4 KiB
SCSS

@import 'connect-hardware/index';
.new-account {
width: 375px;
background-color: var(--color-background-default);
box-shadow: var(--shadow-size-xs) var(--color-shadow-default);
z-index: 25;
height: unset;
overflow: auto;
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
}
@include screen-sm-min {
position: absolute;
}
.bottom-border-1px {
border-width: 0 0 1px 0;
}
}
.new-account-create-form {
display: flex;
flex-flow: column;
align-items: center;
padding: 30px;
&__input-label {
@include Paragraph;
color: var(--color-text-alternative);
align-self: flex-start;
}
&__input {
@include Paragraph;
height: 54px;
width: 315.84px;
border: 1px solid var(--color-border-muted);
border-radius: 4px;
background-color: var(--color-background-default);
color: var(--color-text-default);
margin-top: 15px;
padding: 0 20px;
&__error {
border: 1px solid var(--color-error-alternative);
}
&::placeholder {
color: var(--color-text-muted);
opacity: 1;
}
}
&__error {
@include H7;
left: 8px;
color: var(--color-error-default);
}
&__error-amount {
margin-top: 5px;
}
&__buttons {
margin-top: 22px;
display: flex;
width: 100%;
justify-content: space-between;
}
&__button {
width: 150px;
min-width: initial;
}
}