File size: 337 Bytes
5b76e0f | 1 2 3 4 5 6 7 8 9 10 11 12 13 | from textual.app import App
from textual.widgets import Static
class BorderApp(App):
def compose(self):
yield Static("My border is solid red", id="static1")
yield Static("My border is dashed green", id="static2")
yield Static("My border is tall blue", id="static3")
app = BorderApp(css_path="border.css")
|