Several issues related to page layout #2798
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Hi @Aues6uen11Z , Just attempting question 1 first, are you meaning something like this? If I understood this correctly, then for this part you can try something like this: tabs = ['Settings', 'log']
with ui.expansion('Project', icon='pending', value=True).props('header-inset-level=1').classes('w-[300px]'):
with ui.tabs().props('vertical').classes('justify-center w-full'):
for tab in tabs:
ui.tab(tab)I used the If you were looking for something else, and I misunderstood, then please let me know 😄 Thanks, |
Beta Was this translation helpful? Give feedback.









On the 3rd question I just tested the expansion tab and button separately like this and seems to work fine.
If you see, my button still remains on top and when I hover over the tab, they are below the button.
So I suppose the
page_stickyas you have used should work, this one I am not really sure what the issue is.On the 4th question, I suppose you are asking to make the
ui.scroll_areafull height of the page? Actu…