[Vuejs]-Hide Footer When Keyboard Appear Mobile Web Muse UI

0👍

In your CSS you have defined #foot (which is an ID).

In your html “foot” is set as class:
<mu-col class="foot">blablablablablablabla</mu-col>

Either “foot” has to be defined as class in CSS or referred to as ID in the
HTML

`<mu-col id="foot">blablablablablablabla</mu-col>`

OR

in css define foot as class, that is ,

.foot {
...
}

Leave a comment