Files
textual/docs/examples/styles/height.py
Will McGugan 7040d00c7b more docs
2022-07-30 17:01:51 +01:00

19 lines
282 B
Python

from textual.app import App
from textual.widget import Widget
class HeightApp(App):
CSS = """
Screen > Widget {
background: green;
height: 50%;
color: white;
}
"""
def compose(self):
yield Widget()
app = HeightApp()