more docs

This commit is contained in:
Will McGugan
2022-07-30 17:01:51 +01:00
parent 7ba36c1146
commit 7040d00c7b
22 changed files with 534 additions and 31 deletions

View File

@@ -2,7 +2,7 @@ from textual.app import App
from textual.widget import Widget
class WidthApp(App):
class HeightApp(App):
CSS = """
Screen > Widget {
background: green;
@@ -15,4 +15,4 @@ class WidthApp(App):
yield Widget()
app = WidthApp()
app = HeightApp()