2019-11-04 13:40:46 +01:00
|
|
|
@import 'signature-request-footer/index';
|
|
|
|
@import 'signature-request-header/index';
|
|
|
|
@import 'signature-request-message/index';
|
|
|
|
|
|
|
|
.signature-request {
|
2020-07-15 15:13:40 +02:00
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
flex-direction: column;
|
|
|
|
min-width: 0;
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2021-08-31 08:16:58 +02:00
|
|
|
@media screen and (min-width: $break-large) {
|
2020-07-15 15:13:40 +02:00
|
|
|
flex: initial;
|
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.signature-request-header {
|
2020-07-15 15:13:40 +02:00
|
|
|
flex: 1;
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2021-01-27 17:51:59 +01:00
|
|
|
.network-display {
|
2020-07-15 15:13:40 +02:00
|
|
|
justify-content: flex-end;
|
2021-01-27 17:51:59 +01:00
|
|
|
margin-left: auto;
|
2020-07-15 15:13:40 +02:00
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.signature-request-content {
|
2020-07-15 15:13:40 +02:00
|
|
|
flex: 1 40%;
|
|
|
|
margin-top: 1rem;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
min-height: min-content;
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__title {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H5;
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__identicon-container {
|
|
|
|
padding: 1rem;
|
|
|
|
flex: 1;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__identicon-border {
|
|
|
|
height: 75px;
|
|
|
|
width: 75px;
|
|
|
|
border-radius: 50%;
|
2022-03-28 19:23:27 +02:00
|
|
|
border: 1px solid var(--color-background-default);
|
2020-07-15 15:13:40 +02:00
|
|
|
position: absolute;
|
|
|
|
box-shadow: 0 2px 2px 0.5px rgba(0, 0, 0, 0.19);
|
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__identicon-initial {
|
|
|
|
position: absolute;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: 60px;
|
2022-03-28 19:23:27 +02:00
|
|
|
color: var(--color-background-default);
|
2020-07-15 15:13:40 +02:00
|
|
|
z-index: 1;
|
|
|
|
text-shadow: 0 4px 6px rgba(0, 0, 0, 0.422);
|
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__info {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H7;
|
2022-05-20 16:35:18 +02:00
|
|
|
|
|
|
|
padding: 0 12px 4px;
|
2020-07-15 15:13:40 +02:00
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
&__info--bolded {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
p {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H6;
|
|
|
|
|
2022-03-24 19:08:08 +01:00
|
|
|
color: var(--color-text-muted);
|
2020-07-15 15:13:40 +02:00
|
|
|
}
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2020-07-15 15:13:40 +02:00
|
|
|
.identicon {}
|
2019-11-04 13:40:46 +01:00
|
|
|
}
|
|
|
|
|