style premium buttons

This commit is contained in:
counterweight 2025-02-25 00:11:20 +01:00
parent d7b9f141ab
commit a5181f8be1
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
3 changed files with 24 additions and 10 deletions

View file

@ -65,7 +65,6 @@
flex-shrink: 0;
margin-left: 20%;
}
}
#create-offer-controls > * {
@ -105,6 +104,24 @@
width: 50%;
}
.premium-button {
background: white;
border: 2px solid #e1c300;
}
.premium-button:hover {
background: #fff8ce;
}
#button-increase-premium {
border-top-right-radius: 10px
}
#button-decrease-premium {
border-bottom-right-radius: 10px
}
.premium-button {
width: 100%;
height: 50%;

View file

@ -139,7 +139,7 @@ eurAmountInput.addEventListener('input', () => {
eurAmountInput.value = eurAmountInput.value.replace(/[^0-9]/g, '');
});
for (btcMethodCheckbox of btcMethodCheckboxes) {
for (const btcMethodCheckbox of btcMethodCheckboxes) {
btcMethodCheckbox.addEventListener('input', () => {
validateBitcoinMethodCheckboxes();
});