web/donate: disable padding-left for wallets on mobile

This commit is contained in:
dumbmoron 2024-07-26 17:06:03 +00:00
parent b3d8a9bf1c
commit 82ecf16d79
No known key found for this signature in database

View file

@ -228,13 +228,6 @@
justify-content: space-evenly; justify-content: space-evenly;
} }
@media screen and (max-width: 750px) {
.donation-options {
flex-direction: column;
gap: 1em;
align-items: center;
}
}
.donation-option { .donation-option {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -292,10 +285,22 @@
gap: .25em; gap: .25em;
} }
input::-webkit-outer-spin-button, input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button { input::-webkit-inner-spin-button {
-webkit-appearance: none; -webkit-appearance: none;
margin: 0; margin: 0;
} }
@media screen and (max-width: 750px) {
.donation-options {
flex-direction: column;
gap: 1em;
align-items: center;
}
.crypto-wallets {
padding-left: 0;
}
}
</style> </style>