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.
73 lines
1.4 KiB
73 lines
1.4 KiB
@import 'signature-request-siwe-header/index';
|
|
@import 'signature-request-siwe-message/index';
|
|
@import 'signature-request-siwe-icon/index';
|
|
|
|
.signature-request-siwe {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
min-width: 0;
|
|
background-color: var(--color-background-default);
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
overflow-y: auto;
|
|
|
|
@media screen and (min-width: $break-large) {
|
|
width: 408px;
|
|
max-height: 82vh;
|
|
min-height: 570px;
|
|
flex: 0 0 auto;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.signature-request-siwe__actionable-message {
|
|
margin: 0 16px 16px;
|
|
|
|
.icon {
|
|
position: absolute;
|
|
left: 17px;
|
|
top: 13px;
|
|
}
|
|
}
|
|
|
|
.actionable-message--with-icon.actionable-message--with-right-button {
|
|
padding-left: 48px;
|
|
}
|
|
}
|
|
|
|
.signature-request-siwe__warning-popover {
|
|
.page-container__footer {
|
|
border-top: none;
|
|
padding: 0;
|
|
display: block;
|
|
}
|
|
|
|
.popover-footer {
|
|
padding: inherit;
|
|
display: block;
|
|
}
|
|
|
|
&__checkbox-wrapper {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
padding: 8px 16px 24px;
|
|
|
|
&__label {
|
|
@include H7;
|
|
|
|
color: var(--color-text-default);
|
|
margin-inline-start: 8px;
|
|
margin-top: 1px;
|
|
user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.check-box {
|
|
color: var(--color-error-default);
|
|
}
|
|
}
|
|
}
|
|
|