|
@@ -5,11 +5,12 @@ from ..documentation_tools import text_demo
|
|
|
|
|
|
def main_demo() -> None:
|
|
def main_demo() -> None:
|
|
with ui.row():
|
|
with ui.row():
|
|
- with ui.card().classes('w-32 h-32'):
|
|
|
|
- ui.label('I will not scroll...\n' * 5)
|
|
|
|
- with ui.card().classes('w-32 h-32'):
|
|
|
|
|
|
+ with ui.card().classes('w-48 h-32'):
|
|
with ui.scroll_area().classes('w-full'):
|
|
with ui.scroll_area().classes('w-full'):
|
|
- ui.label('I will scroll...\n' * 5)
|
|
|
|
|
|
+ ui.label('I will scroll... ' * 10)
|
|
|
|
+
|
|
|
|
+ with ui.card().classes('w-48 h-32'):
|
|
|
|
+ ui.label('I will not scroll... ' * 10)
|
|
|
|
|
|
|
|
|
|
def more() -> None:
|
|
def more() -> None:
|