Browse Source

兑换成功的弹窗样式修改;

master
宋杰 3 weeks ago
parent
commit
7541932e53
  1. 24
      src/views/homePage.vue

24
src/views/homePage.vue

@ -1706,9 +1706,13 @@ onUnmounted(() => {
:width="isMobile ? '60%' : '30%'" :width="isMobile ? '60%' : '30%'"
:show-close="false" :show-close="false"
class="changeSuccessDialog" class="changeSuccessDialog"
:align-center="isMobile"
align-center
center
> >
<div class="changeSuccessDialogTitle">兑换成功</div>
<div class="changeSuccessDialogTitle">
<img v-if="!isMobile" src="https://d31zlh4on95l9h.cloudfront.net/images/84edd341b2ddec464fc4475254f7a309.png" style="scale: 0.7;" alt="token图标">
兑换成功
</div>
<div class="changeSuccessDialogContent"> <div class="changeSuccessDialogContent">
尊敬的用户恭喜您成功兑换{{ activeLevel.calculatedPosition }} Token 尊敬的用户恭喜您成功兑换{{ activeLevel.calculatedPosition }} Token
</div> </div>
@ -2043,6 +2047,7 @@ body {
position: absolute; position: absolute;
right: 20px; right: 20px;
display: flex; display: flex;
gap: 10px;
} }
.pc-countBtn { .pc-countBtn {
@ -2567,7 +2572,17 @@ body {
.changeSuccessDialogTitle { .changeSuccessDialogTitle {
font-size: 1.7rem; font-size: 1.7rem;
font-weight: bold; font-weight: bold;
color: #de93a3;
color: #7849DE;
display: flex;
justify-content: center;
align-items: center;
letter-spacing: 10px;
}
.changeSuccessDialogTitle image{
font-size: 1.7rem;
font-weight: bold;
color: #7849DE;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
@ -2576,6 +2591,7 @@ body {
.changeSuccessDialogContent { .changeSuccessDialogContent {
padding: 20px; padding: 20px;
color: white;
font-size: 1.2rem; font-size: 1.2rem;
font-weight: bold; font-weight: bold;
text-align: center; text-align: center;
@ -2860,6 +2876,6 @@ body {
<style> <style>
.changeSuccessDialog { .changeSuccessDialog {
background: linear-gradient(180deg, #a2dffe, #b59be1);
background: linear-gradient(180deg, #80D3F8, #8080FF);
} }
</style> </style>
Loading…
Cancel
Save