No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. garlicbread
    G
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 2
    • Best 2
    • Groups 0

    garlicbread

    @garlicbread

    13
    Reputation
    2
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    garlicbread Follow

    Best posts made by garlicbread

    • RE: Best practice setting up q-scroll-area

      I came up against this problem recently, this thread seems to pop up on the top of the google results when searching for it

      then I discovered these links

      • https://github.com/quasarframework/quasar/issues/2860
      • https://forum.quasar-framework.org/topic/5466/flexbox-and-q-scroll-area-s-height/4
      • https://codepen.io/cp-tof06/pen/bGdKXpW

      First in the body tag I disabled the page scroll

      <body style="overflow: hidden;">
      

      Next as an example for the q-scroll-area

          <q-page-container>
            <q-page class="row no-wrap">
      
              <div class="col q-ma-md">
                <div class="column full-height">
                  <q-scroll-area class="col q-pa-sm" visible>
      
                    <router-view />
      
                  </q-scroll-area>
                </div>
              </div>
      
            </q-page>
          </q-page-container>
      
      posted in Help
      G
      garlicbread
    • RE: How to make a q-page-container child use full height of its grandparent?

      Just a quick note since I stumbled across this thread when googling for the same reason
      The best answer seems to be to use the following on the div inside the qpage

      style="min-height: inherit;"
      
      posted in Help
      G
      garlicbread

    Latest posts made by garlicbread

    • RE: How to make a q-page-container child use full height of its grandparent?

      Just a quick note since I stumbled across this thread when googling for the same reason
      The best answer seems to be to use the following on the div inside the qpage

      style="min-height: inherit;"
      
      posted in Help
      G
      garlicbread
    • RE: Best practice setting up q-scroll-area

      I came up against this problem recently, this thread seems to pop up on the top of the google results when searching for it

      then I discovered these links

      • https://github.com/quasarframework/quasar/issues/2860
      • https://forum.quasar-framework.org/topic/5466/flexbox-and-q-scroll-area-s-height/4
      • https://codepen.io/cp-tof06/pen/bGdKXpW

      First in the body tag I disabled the page scroll

      <body style="overflow: hidden;">
      

      Next as an example for the q-scroll-area

          <q-page-container>
            <q-page class="row no-wrap">
      
              <div class="col q-ma-md">
                <div class="column full-height">
                  <q-scroll-area class="col q-pa-sm" visible>
      
                    <router-view />
      
                  </q-scroll-area>
                </div>
              </div>
      
            </q-page>
          </q-page-container>
      
      posted in Help
      G
      garlicbread