Merge pull request #2420 from Safelite/feature/CASH-498

CASH-498 - created custom secondary button just for donation block
This commit is contained in:
mvalaiyapathi 2025-04-14 09:27:52 -04:00 committed by GitHub
commit 055e5318e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,8 +55,8 @@
<buttonMain <buttonMain
ref="buttonMain" ref="buttonMain"
:buttonText="DonationAddButtonCopy" :buttonText="DonationAddButtonCopy"
loaderColor="white" loaderColor="blue"
class="w-100 mb-2" class="w-100 mb-2 custom-secondary"
@click-event="handleDonationAction" /> @click-event="handleDonationAction" />
</div> </div>
</div> </div>
@ -291,5 +291,12 @@ export default {
left: -0.25rem; left: -0.25rem;
} }
} }
.custom-secondary {
&:hover {
color: $blue;
background: transparent;
border: 1px solid $blue;
}
}
} }
</style> </style>