fix mobile input zoom issue

This commit is contained in:
keyan 2021-05-06 17:01:48 -05:00
parent 4b07edf6f5
commit 764a683500
3 changed files with 9 additions and 4 deletions

View File

@ -31,7 +31,6 @@ export default function Price () {
} }
if (asSats) { if (asSats) {
console.log(asSats, 'as sats')
return ( return (
<Button className='text-reset' onClick={handleClick} variant='link'> <Button className='text-reset' onClick={handleClick} variant='link'>
{fixed(100000000 / data.data.amount, 0) + ' sats/$'} {fixed(100000000 / data.data.amount, 0) + ' sats/$'}

View File

@ -59,6 +59,12 @@ body {
height: 100%; height: 100%;
} }
@media screen and (max-width: 767px) {
input, select, textarea, .form-control, .form-control:focus, .input-group-text {
font-size: 1rem !important;
}
}
.form-label { .form-label {
font-size: 92%; font-size: 92%;
font-weight: bold; font-weight: bold;

View File

@ -1,11 +1,11 @@
.login .providerButton { .providerButton {
width: 100%; width: 100%;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
display: flex; display: flex;
} }
.login > * { .login {
max-width: 300px; max-width: 300px;
margin: auto; width: 100%;
} }