vue-bulma / tabs

Tabs Component for Vue Bulma
MIT License
41 stars 38 forks source link

Make content scrollable not tabs #6

Closed MaestroJurko closed 6 years ago

MaestroJurko commented 7 years ago

Is there an easy way to make content scrollable and tabs non scrollable/fixed? Now when scrolling, tabs are moving and I would like to have them static, so that only content inside is scrolling when using window scrollbar.

I tried using position fixed, but it did not solve the problem.

Any suggestions?

MaestroJurko commented 7 years ago

Any suggestions ????

luventa commented 7 years ago

Sorry for replying late. I think there is a simple approach for this:

  1. add a scoped css node.
  2. set class, for example:
    .vue-bulma-tabs > .tab-context { 
     height: 500px; 
     overflow-y: auto;
    }