2018-07-31 00:34:00 +02:00
|
|
|
.qr-scanner {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #fff;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
|
|
&__title {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H3;
|
|
|
|
|
2018-07-31 00:34:00 +02:00
|
|
|
font-weight: 500;
|
|
|
|
padding: 16px 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
|
|
|
|
&__video-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
height: 275px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
video {
|
|
|
|
transform: scaleX(-1);
|
|
|
|
width: auto;
|
|
|
|
height: 275px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__status {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H6;
|
|
|
|
|
2018-07-31 00:34:00 +02:00
|
|
|
text-align: center;
|
|
|
|
padding: 15px;
|
|
|
|
}
|
2018-08-01 00:30:40 +02:00
|
|
|
|
2018-08-04 00:57:23 +02:00
|
|
|
&__image {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include H3;
|
|
|
|
|
2018-08-04 00:57:23 +02:00
|
|
|
font-weight: 500;
|
|
|
|
padding: 16px 0 0;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__error {
|
2020-10-29 16:03:29 +01:00
|
|
|
@include Paragraph;
|
|
|
|
|
2018-08-04 00:57:23 +02:00
|
|
|
text-align: center;
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__footer {
|
|
|
|
padding: 20px;
|
|
|
|
flex-direction: row;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button:last-of-type {
|
|
|
|
margin-right: 0;
|
|
|
|
background-color: #009eec;
|
|
|
|
border: none;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__close::after {
|
|
|
|
content: '\00D7';
|
|
|
|
font-size: 35px;
|
|
|
|
color: #9b9b9b;
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
right: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-weight: 300;
|
2018-08-01 00:30:40 +02:00
|
|
|
}
|
2018-07-31 00:34:00 +02:00
|
|
|
}
|
|
|
|
|