Browse Source

remove padding from content in slideshow example

Rodja Trappe 1 year ago
parent
commit
c21da76480
1 changed files with 2 additions and 0 deletions
  1. 2 0
      examples/slideshow/main.py

+ 2 - 0
examples/slideshow/main.py

@@ -4,6 +4,8 @@ from pathlib import Path
 from nicegui import app, ui
 from nicegui import app, ui
 from nicegui.events import KeyEventArguments
 from nicegui.events import KeyEventArguments
 
 
+ui.query('.nicegui-content').classes('p-0')  # remove padding from the main content
+
 folder = Path(__file__).parent / 'slides'  # image source: https://pixabay.com/
 folder = Path(__file__).parent / 'slides'  # image source: https://pixabay.com/
 files = sorted(f.name for f in folder.glob('*.jpg'))
 files = sorted(f.name for f in folder.glob('*.jpg'))
 index = 0
 index = 0