Pārlūkot izejas kodu

remove padding from content in slideshow example

Rodja Trappe 1 gadu atpakaļ
vecāks
revīzija
c21da76480
1 mainītis faili ar 2 papildinājumiem un 0 dzēšanām
  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