How to I set a custom footer Height?
-
In the documentation I see the below for setting custom footer Height.
I tried using the below code and it doesn’t seem to work for me.
<q-footer elevated class="bg-grey-8 text-white" height-hint="150px"> <q-toolbar> </q-toolbar> </q-footer>
Can someone please help? The documentation is not very helpful and I don’t even find any examples online.
-
@bala41288 i believe height-hint is not for the height of the footer, since it’s in the behavior section of the api. Giving your qfooter a css style with height should just work. ie.
<q-footer style="height:150px;" ...>