瀏覽代碼

remove padding from content in slideshow example

Rodja Trappe 1 年之前
父節點
當前提交
c21da76480
共有 1 個文件被更改,包括 2 次插入0 次删除
  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.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/
 files = sorted(f.name for f in folder.glob('*.jpg'))
 index = 0