2020-08-07 17:58:48 +02:00
|
|
|
.qr-code {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&__message-container > div:first-child {
|
2020-10-29 15:30:38 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2020-08-07 17:58:48 +02:00
|
|
|
margin-top: 18px;
|
2022-03-22 18:05:15 +01:00
|
|
|
color: var(--color-text-muted);
|
2020-08-07 17:58:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__message {
|
2020-10-29 15:30:38 +01:00
|
|
|
@include H7;
|
|
|
|
|
2022-03-22 18:05:15 +01:00
|
|
|
color: var(--color-warning-default);
|
2020-08-07 17:58:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__error {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-03-23 17:29:22 +01:00
|
|
|
color: var(--color-error-default);
|
2020-08-07 17:58:48 +02:00
|
|
|
margin-bottom: 9px;
|
|
|
|
}
|
2021-10-13 19:54:48 +02:00
|
|
|
|
2021-11-09 11:58:21 +01:00
|
|
|
&__address-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
&__tooltip-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.qr-code__copy-icon__svg {
|
2022-03-22 18:05:15 +01:00
|
|
|
fill: var(--color-primary-default);
|
2021-11-09 11:58:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-13 19:54:48 +02:00
|
|
|
&__address {
|
|
|
|
@include H7;
|
|
|
|
|
2022-03-22 18:05:15 +01:00
|
|
|
background-color: var(--color-background-alternative);
|
2021-11-09 11:58:21 +01:00
|
|
|
width: 76%;
|
|
|
|
padding: 8px 12px;
|
|
|
|
word-break: break-all;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__copy-icon {
|
|
|
|
height: 13px;
|
|
|
|
padding: 17px 0;
|
|
|
|
position: absolute;
|
|
|
|
right: 24px;
|
|
|
|
|
|
|
|
&__svg {
|
2022-03-22 18:05:15 +01:00
|
|
|
fill: var(--color-icon-default);
|
2021-11-09 11:58:21 +01:00
|
|
|
}
|
2021-10-13 19:54:48 +02:00
|
|
|
}
|
2020-08-07 17:58:48 +02:00
|
|
|
}
|