mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 04:46:10 +01:00
31 lines
534 B
SCSS
31 lines
534 B
SCSS
|
.jwt-url-form {
|
||
|
&__instruction {
|
||
|
@include Paragraph;
|
||
|
|
||
|
align-self: flex-start;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
&__input {
|
||
|
@include Paragraph;
|
||
|
|
||
|
height: 54px;
|
||
|
width: 100%;
|
||
|
border-radius: 4px;
|
||
|
background-color: var(--color-background-default);
|
||
|
margin-top: 16px;
|
||
|
padding: 0 10px;
|
||
|
}
|
||
|
|
||
|
&__input-jwt {
|
||
|
@include Paragraph;
|
||
|
|
||
|
height: 154px;
|
||
|
width: 100%;
|
||
|
border-radius: 4px;
|
||
|
background-color: var(--color-background-default);
|
||
|
color: var(--color-text-default);
|
||
|
padding: 10px;
|
||
|
}
|
||
|
}
|