You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
1.4 KiB
86 lines
1.4 KiB
@import 'signature-request-footer/index';
|
|
@import 'signature-request-header/index';
|
|
@import 'signature-request-message/index';
|
|
|
|
.signature-request {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
|
|
@include screen-sm-min {
|
|
flex: initial;
|
|
}
|
|
}
|
|
|
|
.signature-request-header {
|
|
flex: 1;
|
|
|
|
.network-display {
|
|
justify-content: flex-end;
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
.signature-request-content {
|
|
flex: 1 40%;
|
|
margin-top: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
margin-bottom: 25px;
|
|
min-height: min-content;
|
|
|
|
&__title {
|
|
@include H5;
|
|
|
|
font-weight: 500;
|
|
}
|
|
|
|
&__identicon-container {
|
|
padding: 1rem;
|
|
flex: 1;
|
|
position: relative;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
&__identicon-border {
|
|
height: 75px;
|
|
width: 75px;
|
|
border-radius: 50%;
|
|
border: 1px solid var(--color-background-default);
|
|
position: absolute;
|
|
}
|
|
|
|
&__identicon-initial {
|
|
position: absolute;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
font-size: 60px;
|
|
color: var(--color-background-default);
|
|
z-index: 1;
|
|
text-shadow: var(--shadow-size-xs) var(--color-shadow-default);
|
|
}
|
|
|
|
&__info {
|
|
@include H7;
|
|
|
|
padding: 0 12px 4px;
|
|
}
|
|
|
|
&__info--bolded {
|
|
@include Paragraph;
|
|
|
|
font-weight: 500;
|
|
}
|
|
|
|
p {
|
|
@include H6;
|
|
|
|
color: var(--color-text-muted);
|
|
}
|
|
}
|
|
|
|
|