Files
textual/docs/examples/styles/height.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
174 B
Python

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