59 lines
1.2 KiB
Plaintext
59 lines
1.2 KiB
Plaintext
@import "../../../config/styles/mp/index.less";
|
|
@import "../../../config/styles/mp/mixins.less";
|
|
|
|
.qrCodeBox {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.qrcode {
|
|
position: relative;
|
|
}
|
|
|
|
.image {
|
|
margin-top: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.mask {
|
|
position: absolute;
|
|
inset-block-start: 0;
|
|
inset-inline-start: 0;
|
|
z-index: 10;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: rgba(0,0,0,0.88);
|
|
line-height: 1.5;
|
|
background: rgba(255,255,255,0.96);
|
|
text-align: center;
|
|
}
|
|
|
|
.caption {
|
|
color: @oak-text-color-secondary;
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.actions {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
.downloadIcon {
|
|
color: @oak-color-primary;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.refreshIcon {
|
|
color: @oak-color-primary;
|
|
font-size: 16px;
|
|
|
|
}
|
|
}
|
|
} |