Files
textual/docs/examples/styles/width.py
Will McGugan 7ba36c1146 docs
2022-07-30 13:03:49 +01:00

19 lines
279 B
Python

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