Hi,
if I create a simple layout with a non-fixed footer the footer is pushed down and scrolling is required, even though the content is smaller than the viewport.
To reproduce from a standard quasar init
:
The Layout is defined with: <q-layout view="lHh Lpr lff">
and <q-layout-footer>Test</q-layout-footer>
is added in the layout and QLayoutFooter imported in quasar.conf.js.
The page looks as follows:
<template>
<q-page>
<h1>test</h1>
</q-page>
</template>
If I remove the margins from the h1: <h1 class="q-ma-none">test</h1>
the page looks as expected.
What am I doing wrong?
thanks!