We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0564b2c commit 7009d1cCopy full SHA for 7009d1c
components/BaseAuth.vue
@@ -16,7 +16,9 @@
16
17
<div class="text-center my-4">
18
<p>可扫码获取验证码(扫码->验证码->SSGO)</p>
19
- <img src="/qrcode.jpg" alt="扫码获取验证码" class="qrcode-image" />
+ <div class="qrcode-container">
20
+ <img src="/qrcode.jpg" alt="扫码获取验证码" class="qrcode-image" />
21
+ </div>
22
</div>
23
</v-card-text>
24
@@ -90,7 +92,17 @@ onMounted(() => {
90
92
<style>
91
93
.qrcode-image {
94
max-width: 200px;
95
+ width: 200px;
96
+ height: 200px;
97
+ object-fit: contain;
98
margin: 0 auto;
99
display: block;
100
}
101
+
102
+.qrcode-container {
103
104
105
+ margin: 0 auto;
106
+ background-color: rgba(0, 0, 0, 0.05);
107
+}
108
</style>
0 commit comments