Files
textual/docs/examples/styles/background.py
Rodrigo Girão Serrão 5ee0ebfef4 Rename CSS files to TCSS.
Related issue: #3137.
2023-08-22 13:21:17 +01:00

13 lines
301 B
Python

from textual.app import App
from textual.widgets import Label
class BackgroundApp(App):
def compose(self):
yield Label("Widget 1", id="static1")
yield Label("Widget 2", id="static2")
yield Label("Widget 3", id="static3")
app = BackgroundApp(css_path="background.tcss")