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

11 lines
171 B
Python

from textual.app import App
from textual.widget import Widget
class WidthApp(App):
def compose(self):
yield Widget()
app = WidthApp(css_path="width.tcss")