web/donate: disable padding-left for wallets on mobile
This commit is contained in:
parent
b3d8a9bf1c
commit
82ecf16d79
1 changed files with 13 additions and 8 deletions
|
@ -228,13 +228,6 @@
|
|||
justify-content: space-evenly;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 750px) {
|
||||
.donation-options {
|
||||
flex-direction: column;
|
||||
gap: 1em;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
.donation-option {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
@ -292,10 +285,22 @@
|
|||
gap: .25em;
|
||||
}
|
||||
|
||||
|
||||
input::-webkit-outer-spin-button,
|
||||
input::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 750px) {
|
||||
.donation-options {
|
||||
flex-direction: column;
|
||||
gap: 1em;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.crypto-wallets {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue