2019-11-04 13:40:46 +01:00
|
|
|
@import 'signature-request-header/index';
|
|
|
|
@import 'signature-request-message/index';
|
2022-11-10 11:28:34 +01:00
|
|
|
@import 'signature-request-data/index';
|
2019-11-04 13:40:46 +01:00
|
|
|
|
|
|
|
.signature-request {
|
2020-07-15 15:13:40 +02:00
|
|
|
display: flex;
|
|
|
|
flex: 1 1 auto;
|
|
|
|
flex-direction: column;
|
|
|
|
min-width: 0;
|
2022-12-02 15:12:43 +01:00
|
|
|
width: 408px;
|
2023-01-31 16:29:23 +01:00
|
|
|
height: max-content;
|
2022-12-02 15:12:43 +01:00
|
|
|
background-color: var(--color-background-default);
|
|
|
|
box-shadow: var(--shadow-size-xs) var(--color-shadow-default);
|
|
|
|
border-radius: 8px;
|
2019-11-04 13:40:46 +01:00
|
|
|
|
2022-08-04 16:03:02 +02:00
|
|
|
@include screen-sm-min {
|
2023-01-31 16:29:23 +01:00
|
|
|
max-height: 80vh;
|
2022-12-02 15:12:43 +01:00
|
|
|
min-height: 570px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2020-07-15 15:13:40 +02:00
|
|
|
}
|
2023-01-31 16:29:23 +01:00
|
|
|
|
|
|
|
&__reject-all-button {
|
|
|
|
margin-top: -15px;
|
|
|
|
}
|
2023-02-23 12:38:09 +01:00
|
|
|
|
|
|
|
&__origin {
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
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;
|
|
|
|
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
|
|
|
&__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
|
|
|
}
|
|
|
|
|
2022-11-21 18:19:49 +01:00
|
|
|
a.signature-request-content__verify-contract-details {
|
|
|
|
padding: 0;
|
|
|
|
}
|