I have an input field that cannot be selected on my Iphone. I can click on the input but it is not focusing. The keyboard to write appears but when I write something into it nothing happens. Therefore I cannot fill out the input fields. Is something missing in my CSS?
<div class="container" v-if="user === null">
<div class="input">
<input type="text" v-model="username" placeholder="E-Mail">
</div>
<div class="input">
<input type="password" @keyup.enter="authenticate" v-model="password" placeholder="Passwort">
</div>
<div class="buttons">
<button @click="authenticate">Log In</button>
</div>
</div>