Merge pull request #6615 from mempool/natsoni/fix-effective-fee-row-mobile

Fix effective fee row on mobile
This commit is contained in:
mononaut 2026-07-14 17:10:16 +09:00 committed by GitHub
commit b59c8eec77
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -172,8 +172,16 @@
gap: 0.5rem;
flex-wrap: wrap;
@media (max-width: 849.98px) {
justify-content: flex-end;
}
.effective-fee-container {
flex: 0 0 auto;
@media (max-width: 425px) {
align-items: flex-end;
}
}
}
}