forked from quant-speed-AI/Scoring-System
50 lines
861 B
SCSS
50 lines
861 B
SCSS
@import './_shared.scss';
|
|
|
|
.page-container {
|
|
@include page-container;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.qr-card {
|
|
@include glass-card;
|
|
@include tech-border;
|
|
padding: 40px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: 40px;
|
|
|
|
.qr-img {
|
|
width: 400px;
|
|
height: 400px;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
margin-bottom: 40px;
|
|
border: 1px solid $primary-cyan;
|
|
padding: 10px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.tip {
|
|
color: $text-main;
|
|
font-size: 28px;
|
|
text-align: center;
|
|
line-height: 1.6;
|
|
opacity: 0.9;
|
|
}
|
|
}
|
|
|
|
.btn-save {
|
|
margin-top: 60px;
|
|
width: 100%;
|
|
@include neon-button($primary-cyan);
|
|
height: 90px;
|
|
line-height: 90px;
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
border-radius: 45px;
|
|
}
|