Bootstrap increase input

0

I'm doing a mobile app and I'm testing the build with Bootstrap, but there's a problem:

    <input type="tel" class="form-control" placeholder="Código Estabelecimento" required  autofocus>
    <input type="password" class="form-control input-lg" placeholder="Senha" required>

In the above code I used input-lg to increase my input, but it still got small when it turned into mobile, I need to get really big (I'm talking about height / height of the field), what should I do since I'm new to Bootstrap Thank you!

    
asked by anonymous 06.07.2014 / 02:12

1 answer

1

use the grid classes, if you use bootstrap 3 try putting in the field

<input type="text" name="email" class="form-control col-lg-6" placeholder="[email protected]" />

In this case the field would have half a grid on large devices!

changing the value is of course increasing or decreasing, as well as using col-sm- * etc. to control responsiveness

    
29.07.2014 / 20:01