File size: 285 Bytes
5b76e0f | 1 2 3 4 5 6 7 8 9 10 11 12 | from textual.app import App
from textual.widgets import Static
class AlignApp(App):
def compose(self):
yield Static("Vertical alignment with [b]Textual[/]", classes="box")
yield Static("Take note, browsers.", classes="box")
app = AlignApp(css_path="align.css")
|